uZIP v0.1
![]() |
Description : Linux bash script to extract all zip archives in current directory. |
| License : | Open Source (GPLv3) |
| Released : | December 5, 2008 |
| Filesize : | 165 bytes |
| Type : | Bash Script |
| OS : | Linux (any) |
| MD5 : | e569a1b26204faa4fbc66aec37effbe0 |
| Installation : | 1. Open terminal 2. Change directory to where you downloaded the file. 3. Type: chmod +x ./uzip.sh (this sets permission) |
| Usage : | — Type: ./uzip.sh (in folder where all zip archive files located) |
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash # uzip v0.1 {12/05/2008} # Coded by EMCGFX # NOTES: Extract many ZIP files at ones. # UnZIP *.zip files: for fz in *.zip; do unzip -o "$fz"; done |




