diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-11-17 02:02:52 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-11-17 02:02:52 +0300 |
commit | 832529761581ea08a7a18cca7b9195d73a8bb4b9 (patch) | |
tree | b93f9cf2698421617eb48eabe72f61b0096690ed /%HOME% | |
parent | less: --ignore-case (diff) | |
download | linux-home-832529761581ea08a7a18cca7b9195d73a8bb4b9.tar.gz linux-home-832529761581ea08a7a18cca7b9195d73a8bb4b9.zip |
don't set -o nounset
Diffstat (limited to '%HOME%')
-rw-r--r-- | %HOME%/.bashrc | 6 |
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' |