diff options
author | self <george@gabbott.dev> | 2022-10-19 16:07:32 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-10-19 16:07:32 +0100 |
commit | 39ca9a8c595cc2e24ce6e402d47e7647c9429823 (patch) | |
tree | 9494c85e4a063814733e37f8fafe630366eb4ff4 | |
parent | e744ee934128bb89b2a9c512086e63bb15344703 (diff) |
change to rd (rename-directory)
-rw-r--r-- | zsh/.zshrc-fn | 5 |
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 |