From 98793f889179a16ffe218d5be87b10d3bdad4430 Mon Sep 17 00:00:00 2001 From: self Date: Sun, 18 Dec 2022 20:08:13 +0000 Subject: Split defix into deprefix and desuffix --- zsh/.zshrc-fn | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'zsh') diff --git a/zsh/.zshrc-fn b/zsh/.zshrc-fn index 3745bcc..526b435 100644 --- a/zsh/.zshrc-fn +++ b/zsh/.zshrc-fn @@ -1,7 +1,13 @@ -defix() { +# Takes a prefix, and removes that prefix from all files that have that prefix. +deprefix() { for i in "$1"*;do mv "$i" "${i#"$1"}";done } +# Similar to [deprefix] but for suffixes. +desuffix() { + rename --no-overwrite -- "$1" "" * +} + rd() { # Rename current directory. [ "$1" = "" ] && echo "rd: rename directory: new name missing" && return curr="$(basename "$(pwd)")" -- cgit v1.2.1