Quantcast
RSS Entries RSS
RSS Subscribe by Email

Archive for January, 2009

Helpful Bash Aliases

Just a few to post for right now, but this entry may grow later.

alias ll='ls -la'           # list all directory contents in listing format
alias untargz="tar zxvf"    # unpacks a .tar.gz file
alias rd='cd `pwd -P`'      # change to the real directory if in a linked directory

Comments