Maybe there is a tool that does that? Maybe I’m doing this all wrong and there is a different way I should browse?
You must log in or register to comment.
You mean something like this?
ls /your/long/path/name
cd !$To add,
!$ gets replaced with the last word from the previous command line
!! Repeats the most recent command
!-N Repeats the Nth previous command
!string Repeats the most recent command that began with ‘string’
I just learned more about Linux than I did from my whole IT degree.

