From b6b3a9a6f6b76442d2d1f2eb03a524497ca29a1e Mon Sep 17 00:00:00 2001 From: self Date: Wed, 23 Mar 2022 11:17:39 +0000 Subject: Added defix function to remove a common prefix from files --- zsh/.zshrc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'zsh') diff --git a/zsh/.zshrc b/zsh/.zshrc index 8ff1172..7a20066 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -105,6 +105,11 @@ alias ad="mn anime-dropped" # Anime I have dropped alias p="zathura" alias o="libreoffice --writer" +# file manipulation +defix() { + for i in "$1"*;do mv "$i" "${i#"$1"}";done +} + # pulseaudio - this is a temporary solution sv() { pactl set-sink-volume 0 $1% -- cgit v1.2.1