What's in your .cshrc that gives you total command of the C shell? Aliases welcome too!
One technique or command per answer.
What's in your .cshrc that gives you total command of the C shell? Aliases welcome too!
One technique or command per answer.
alias m0 'set d0 = `pwd`'
alias m1 'set d1 = `pwd`'
...
alias g0 'cd $d0'
alias g1 'cd $d1'
...
Typing m0 saves the current working directory (in d0) and g0 returns to that directory.