.bashrc
changeset 231 84c9533f2675
parent 230 2c6542befc32
child 235 3c0d218db7a3
equal deleted inserted replaced
230:2c6542befc32 231:84c9533f2675
    82 alias ...="cd ../.."    #go to grandparent dir
    82 alias ...="cd ../.."    #go to grandparent dir
    83 alias -- -="cd -"       # go to previous dir
    83 alias -- -="cd -"       # go to previous dir
    84 alias l.='ls -d .*'     #list hidden files
    84 alias l.='ls -d .*'     #list hidden files
    85 alias ll='ls -lhrt'     #extra info compared to "l"
    85 alias ll='ls -lhrt'     #extra info compared to "l"
    86 alias lld='ls -lUd */'  #list directories
    86 alias lld='ls -lUd */'  #list directories
       
    87 # I prefer EN man pages.
       
    88 alias man='LANG=C man'
    87 
    89 
    88 # make and change to a directory
    90 # make and change to a directory
    89 md () { mkdir -p "$1" && cd "$1"; }
    91 md () { mkdir -p "$1" && cd "$1"; }
    90 
    92 
    91 # GREP_COLOR=bright yellow on black bg.
    93 # GREP_COLOR=bright yellow on black bg.