summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)")"