diff --git a/dots/.config/zsh/config/profile/profile/functions.zsh b/dots/.config/zsh/config/profile/profile/functions.zsh index 528548de..02788826 100644 --- a/dots/.config/zsh/config/profile/profile/functions.zsh +++ b/dots/.config/zsh/config/profile/profile/functions.zsh @@ -160,3 +160,9 @@ TCPDump-Capture() { tcpdump -qns 0 -X -r "${1}" } +Unzip () { + for item in "${*[@]}"; do + unzip -d "${item%.zip}" "${item}" || return + printf "\n" + done +}