Skip to content

Instantly share code, notes, and snippets.

@alandipert
Created March 14, 2009 23:33
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 alandipert/79230 to your computer and use it in GitHub Desktop.
Save alandipert/79230 to your computer and use it in GitHub Desktop.
# [ ~/Projects/nuklei/smoothiewizard/public/javascripts ] $ cdu 4
# [ ~/Projects ] $
function cdu { # "cd up" - move up $1 directories
if [ -z $1 ]; then
num=1
else
num=$1
fi
while [ $num -gt "0" ]; do
cd ..
num=$(( $num - 1 ))
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment