Skip to content

Instantly share code, notes, and snippets.

@kvalv
Created March 12, 2018 19:19
Show Gist options
  • Select an option

  • Save kvalv/f61931360887168b96d6e344cdec782e to your computer and use it in GitHub Desktop.

Select an option

Save kvalv/f61931360887168b96d6e344cdec782e to your computer and use it in GitHub Desktop.
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