26th March 2009
in
Applications, cli
If you happen to access several directories daily by using the command line, you can bookmark some of the longer paths with autojump. Instead of typing cd /long/path/to/some/folder/named/work you can simply do a
j work
[...]
Tags: cd
No Comments
29th November 2008
in
cli
While in Terminal, going back to the previous directory can be done with the classic cd ..But there’s another way. make an alias of you choice for cd $OLDPWD, like this:
alias cdo=’cd $OLDPWD’
Now every[...]
Tags: cd
7 Comments