diff options
author | self <self@sateoki.xyz> | 2022-03-23 11:17:39 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-03-23 11:17:39 +0000 |
commit | b6b3a9a6f6b76442d2d1f2eb03a524497ca29a1e (patch) | |
tree | 5fcadba804b9f818e6a9976cd8d33a01608187fc /zsh | |
parent | 1bef0846ffd48e1fd54a0b69c68d9222e9b1e588 (diff) |
Added defix function to remove a common prefix from files
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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% |