diff options
Diffstat (limited to '%HOME%')
-rw-r--r-- | %HOME%/.bashrc | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index d8c709a..623146c 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -14,12 +14,35 @@ shopt -s histappend shopt -s nullglob shopt -s nocaseglob -_os="$( uname -o )" +_os='' + +detect_os() { + command -v uname > /dev/null \ + && [ "$( uname -o )" == 'Cygwin' ] \ + && _os='Cygwin' \ + && return 0 + + [ -r /etc/os-release ] \ + && _os="$( . /etc/os-release && echo "$NAME" )" \ + && return 0 + + return 1 +} + +detect_os + +os_detected() { + test -n "$_os" +} is_cygwin() { test "$_os" == 'Cygwin' } +is_ubuntu() { + test "$_os" == 'Ubuntu' +} + is_cygwin && set -o igncr export SHELLOPTS |