Created
March 12, 2018 19:19
-
-
Save kvalv/f61931360887168b96d6e344cdec782e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function ppwd () { | |
| pwd > /tmp/ppwd.dat | |
| } | |
| function ccd () { | |
| if [ -f /tmp/ppwd.dat ]; then | |
| cd `cat /tmp/ppwd.dat` | |
| pwd | |
| else; | |
| echo "could not do ccd command. No ppwd done." | |
| fi | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment