Instead of using cd, pushd, popd, and cdable_vars, and CDPATH, I heard a while ago that there was a tool that "learned" the paths you most frequently navigated to and make shortcuts for those dynamically. Does anyone know what tool I vaguely have in mind?
Asked
Active
Viewed 123 times
2 Answers
0
Add the following to your profile...
alias ycd+='pwd>>$HOME/.ycd_list;sort -u -o $HOME/.ycd_list $HOME/.ycd_list'
alias ycd='select ID in $(<$HOME/.ycd_list);do [ $ID ] && cd $ID;break;done'
Use ycd+ to bookmark a directory and use ycd to navigate betwwen bookmarked directories.
Original post http://www.unix.com/302288249-post4.html
Ygor
- 1