diff options
-rw-r--r-- | cdlog.sh | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -13,7 +13,7 @@ if [ -z "$c1" ] ; then fi # One-letter nicknames for most recent four dirs. -cdlog_nicks() +cdlog.nicks() { x=$c1 y=$c2 @@ -22,7 +22,7 @@ cdlog_nicks() } # Change to directory: this is aliased to cd command. -cdlog_chdir() +cdlog.chdir() { local cur=$PWD @@ -48,13 +48,13 @@ cdlog_chdir() c1=$cur fi - cdlog_nicks + cdlog.nicks fi } # Change to most recent diretory in cdlog and remove it # from the log. -cdlog_pop() +cdlog.pop() { if [ -n "$c1" ] && command cd "$c1"; then c1=$c2 @@ -67,7 +67,7 @@ cdlog_pop() c8=$c9 c9= - cdlog_nicks + cdlog.nicks fi } @@ -82,9 +82,9 @@ cdlog() } # Aliases. -alias cs='cdlog_chdir "$c1"' -alias cd='cdlog_chdir -P' -alias pd='cdlog_pop' +alias cs='cdlog.chdir "$c1"' +alias cd='cdlog.chdir -P' +alias pd='cdlog.pop' # Better completion for $x[Tab] shopt -s direxpand |