summaryrefslogtreecommitdiff
path: root/zsh/.zshrc-fn
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-12-18 20:08:13 +0000
committerself <george@gabbott.dev>2022-12-18 20:08:13 +0000
commit98793f889179a16ffe218d5be87b10d3bdad4430 (patch)
treed7a4967c9e40226c9605f0b935242b53a6a03984 /zsh/.zshrc-fn
parent7309d81e15c6898b34c44c3a58f11788866e11ab (diff)
Split defix into deprefix and desuffix
Diffstat (limited to 'zsh/.zshrc-fn')
-rw-r--r--zsh/.zshrc-fn8
1 files changed, 7 insertions, 1 deletions
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)")"