Skip to content

Instantly share code, notes, and snippets.

@raamdev
Created May 19, 2014 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raamdev/ad88784311bb7f58ff2f to your computer and use it in GitHub Desktop.
Save raamdev/ad88784311bb7f58ff2f to your computer and use it in GitHub Desktop.
cd + pwd
cd_pwd()
{
if [ $# -eq 0 ]; then
DIR="${HOME}"
else
DIR="$1"
fi
cd "${DIR}"
pwd
}
alias cd="cd_pwd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment