Linked by Tony Steidler-Dennison on Thu 10th Jul 2008 16:37 UTC
Thread beginning with comment 322355
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.





Member since:
2005-07-08
some that i've found useful and that were popular at my previous workplace:
Make common administration tasks go through sudo without having to type sudo:
alias dpkg="sudo dpkg"
alias apt-get="sudo apt-get"
alias modprobe="sudo modprobe"
Serve files from CWD via a webserver:
alias serve="python2.5 -m SimpleHTTPServer"
Color stuff; grep w/ less that doesn't mess it up
alias ls="ls --color=auto -F"
alias grep="grep --color=auto"
alias less="less -R"
open up files in existing vim session
alias rvim="gvim --remote"