aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.bashrc
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-11-17 02:02:52 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-11-17 02:02:52 +0300
commit832529761581ea08a7a18cca7b9195d73a8bb4b9 (patch)
treeb93f9cf2698421617eb48eabe72f61b0096690ed /%HOME%/.bashrc
parentless: --ignore-case (diff)
downloadlinux-home-832529761581ea08a7a18cca7b9195d73a8bb4b9.tar.gz
linux-home-832529761581ea08a7a18cca7b9195d73a8bb4b9.zip
don't set -o nounset
Diffstat (limited to '%HOME%/.bashrc')
-rw-r--r--%HOME%/.bashrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc
index fce8a03..d513e8c 100644
--- a/%HOME%/.bashrc
+++ b/%HOME%/.bashrc
@@ -5,7 +5,7 @@ esac
PS1='\[\e[33m\]\W\[\e[0m\]: '
-set -o nounset
+#set -o nounset
set -o pipefail
shopt -s checkwinsize
@@ -20,6 +20,10 @@ is_cygwin() {
test "$_os" == 'Cygwin'
}
+is_cygwin && set -o igncr
+
+export SHELLOPTS
+
alias df='df --human-readable'
alias du='du --human-readable'