From 39ca9a8c595cc2e24ce6e402d47e7647c9429823 Mon Sep 17 00:00:00 2001 From: self Date: Wed, 19 Oct 2022 16:07:32 +0100 Subject: change to rd (rename-directory) --- zsh/.zshrc-fn | 5 +++-- 1 file 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 -- cgit v1.2.1