summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-10-19 16:07:32 +0100
committerself <george@gabbott.dev>2022-10-19 16:07:32 +0100
commit39ca9a8c595cc2e24ce6e402d47e7647c9429823 (patch)
tree9494c85e4a063814733e37f8fafe630366eb4ff4 /zsh
parente744ee934128bb89b2a9c512086e63bb15344703 (diff)
change to rd (rename-directory)
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc-fn5
1 files changed, 3 insertions, 2 deletions
diff --git a/zsh/.zshrc-fn b/zsh/.zshrc-fn
index f58df75..3745bcc 100644
--- a/zsh/.zshrc-fn
+++ b/zsh/.zshrc-fn
@@ -3,10 +3,11 @@ defix() {
}
rd() { # Rename current directory.
- curr="$(dirname "$(pwd)")"
+ [ "$1" = "" ] && echo "rd: rename directory: new name missing" && return
+ curr="$(basename "$(pwd)")"
cd ..
mv "$curr" "$1"
- cd "$curr" || return
+ cd "$1" || return
}
# pulseaudio - this is a temporary solution