Let's suppose we have this directory structure:
/home/myuser/dir_1/sub_1/sub_2/sub_3
and I want to traverse from sub_3 to dir_1, what I need to do is
cd ../../..
My question is, isn't there something shorter? I mean something like:
cd -t 3
where you can tell the shell how many directories you want to go back.