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 119 times
0
-
Probably this one Dynamic Shortcut Creation with Bash – Basharat Sialvi May 17 '12 at 05:59
-
3Possible duplicate of Short-cut for switching to a given directory – muru Sep 28 '18 at 04:43
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