Go Back
unzd() { if [[ $# != 1 ]]; then echo I need a single argument, the name of the archive to extract; return 1; fi target="${1%.zip}" unzip "$1" -d "${target##*/}" }
https://unix.stackexchange.com/questions/489445/unzip-to-a-folder-with-the-same-name