From 0aea05d4f707ba6d6509554d9f04a5d9bd052498 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 27 Aug 2008 17:45:34 +0100 Subject: [PATCH] Added ".." and "..." commands. They go up one/two directories. --- rc | 5 +++++ 1 file changed, 5 insertions(+) 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 ../.. -- 2.44.1