.bash_path
changeset 285 60fc251ec270
parent 280 fc3c78e39407
child 299 2771c1f6f3c5
equal deleted inserted replaced
284:3351fda649d5 285:60fc251ec270
    10 # Note debian/ubuntu users should install the ncurses-term package to support this
    10 # Note debian/ubuntu users should install the ncurses-term package to support this
    11 # export TERM=xterm-256color
    11 # export TERM=xterm-256color
    12 
    12 
    13 # Special case for CYGWIN to properly display russian letters in rxvt.
    13 # Special case for CYGWIN to properly display russian letters in rxvt.
    14 # Don't forget set in Windows SHELL=/bin/bash. If default SHELL is sh then .bashrc will not be read.
    14 # Don't forget set in Windows SHELL=/bin/bash. If default SHELL is sh then .bashrc will not be read.
    15 if [[ x$OSTYPE = xcygwin ]]; then
    15 if [[ $OSTYPE = cygwin ]]; then
    16   export LANG=ru_RU.CP1251
    16   export LANG=ru_RU.CP1251
    17   # Avoid permission problem in Cygwin.
    17   # Avoid permission problem in Cygwin.
    18   umask 0000
    18   umask 0000
    19 fi
    19 fi
    20 
    20