-72

Tip #538   Fast access to frequently used directories

Add the following function/alias combo to your profile for fast directory access:
fd(){ `cat ~/.fd | grep $1`; }; alias addfd='echo "cd `pwd`" >> ~/.fd'

Usage example:
user@host:~/long/path/you/dont/want/to/type/often$ addfd

user@host:~$ fd often
user@host:~/long/path/you/dont/want/to/type/often$ 

To see the list of all fast access directories you can use "cat ~/.fd"
 
  • TAGS: