Navigating around in your shell
Navigating around in your shell
Good article. Rather than aliasing `cd …/…" etc. I’ve got this function in my setup:
up () { local x='' for i in $(seq ${1:-1}) do x="$x../" done cd $x }This lets me do up 4 to go up 4 directories.