Is there any Linux command which remembers directories I changed, and shows its stack with interacting operation to choose a directory such as pushing an arrow key on keyboard? This must be different from the way pushd/popd/dirs do.
feedback
|
migrated from stackoverflow.com Jun 18 '10 at 1:11
This question came from our site for professional and enthusiast programmers.
|
CDargs has the interface you described, although getting it to work automatically from a shell would require a little hacking. You need to call
every time you switch directories, and then just running
| |||||
feedback
|
|
It would be easy to write a function that would use dialog or whiptail along with pushdir and popdir to do what you're asking. | |||
|
feedback
|