diff --git a/dots/.config/zsh/config/profile/profile/functions.zsh b/dots/.config/zsh/config/profile/profile/functions.zsh index 02788826..c40aa2dd 100644 --- a/dots/.config/zsh/config/profile/profile/functions.zsh +++ b/dots/.config/zsh/config/profile/profile/functions.zsh @@ -166,3 +166,9 @@ Unzip () { printf "\n" done } + +File-Strip-Blank() { + for file in "${*[@]}"; do + mv "${file}" "${file//[[:blank:]]/-}" + done +}