2024-02-21 09:54:10 +01:00
2024-02-21 09:54:10 +01:00
2023-08-14 13:43:19 +02:00

Unzip to a folder with the same name as the file (without the .zip extension)

for f in *.zip; do unzip "$f" -d "${f%.zip}"; done

For just one file (i.e. to use in a function) it would be:

unzip "$1" -d "${1%.zip}"
S
Description
Diversos scriptes per a bash, python i windows
Readme 1.7 MiB
Languages
Shell 56.5%
Python 43.3%
Batchfile 0.2%