Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Done Support an "up" command to go to parent directory and "up3" to go up 3 directories, etc.

Aug
16
0
I currently have this defined as aliases... but i'd like to not have to add it for all of them (Obviously a low priority request, but may be easy to implement):
up=cd..
up2=cd..\..
up3=cd..\..\..
up4=cd..\..\..
upn=...
 
Just FYI; Extended Parent Directory Names (see that topic in the help, and the help for CD) eliminates the need for the backslashes and double dots for each directory. cd ... is up 2, cd .... is up 3, etc.
 
Just FYI; Extended Parent Directory Names (see that topic in the help, and the help for CD) eliminates the need for the backslashes and double dots for each directory. cd ... is up 2, cd .... is up 3, etc.
The CD is optional too; you can use
Code:
..
to change to the parent directory,
Code:
...
for the grandparent, and so on.

And since version 21, you don't even need a command; Ctrl-Shift-Up will pop you up one level.
 
The CD is optional too; you can use
Code:
..
to change to the parent directory,
Code:
...
for the grandparent, and so on.

And since version 21, you don't even need a command; Ctrl-Shift-Up will pop you up one level.
Well that's cool. Thanks Charles!
 

Similar threads

Back
Top