From: Simon Ruderich Date: Wed, 27 Aug 2008 16:45:34 +0000 (+0100) Subject: Added ".." and "..." commands. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=0aea05d4f707ba6d6509554d9f04a5d9bd052498 Added ".." and "..." commands. They go up one/two directories. --- diff --git a/rc b/rc index 9c55eea..a0063f3 100644 --- a/rc +++ b/rc @@ -11,3 +11,8 @@ set bmk:save-passwords yes # and transfer all missing/outdated files. Local files which don't exist # anymore are removed on the server. alias sync mirror --verbose --reverse --delete --dereference --exclude .DS_Store + +# Create new ".." command to go one directory up the tree. +alias .. cd .. +# Create new "..." command to go two directories up the tree. +alias ... cd ../..