Comment on
Best practices for navigating file structure via terminal?
I think it’s just a matter of getting used to it. I had the same issue at first and the more I used the command line, the more I started to prefer it to GUI apps for certain tasks.
A couple things that I use all the time:
- tab completion is incredible
cd -goes back to the last directory you were in (useful for bouncing back and forth between locations)!$means the last argument. So if youls ~/Downloadsand then decide you want to go there, you cancd !$.:hremoves the last piece of a path. So I can dovim /etc/network/interfacesand thencd !$:hwill take me to/etc/network.