Thursday, June 21, 2012

More Bash magic

set to automatically cd into a dir by typing its name:
shopt -s autocd

go back to previous pwd ($OLDPWD):
cd -

rename a path with a new suffix:
mv /var/www/test{,1}

Again all courtesy of my co-worker Ben.M

No comments:

Post a Comment