//Tips tagged csh
Latest tips by RSS
Click here to subscribe
Follow Shell-Fu on Twitter
Click here to follow
Follow Shell-Fu on identi.ca
Click here to follow
Put the following alias in your profile to store a directory name to use later on:
Example usage:
This method works for csh but not bash. For bash try the following function in your profile:
Then:
alias sd='set \!:1=$cwd'
Example usage:
$ sd mydir ... $ cd mydir
This method works for csh but not bash. For bash try the following function in your profile:
sd(){ export $1=$PWD; }
Then:
$ sd abc ... $ cd $abc

