Chez ouam

/home/jmfrouin

View on GitHub
22 January 2013

unzip *

by Jean-Michel Frouin

zip ne supporte pas le wildcard pour décompresser plusieurs fichiers zip d'un coup.

Du coup un petit script est nécessaire pour dézipper tous les fichier ZIP d'un répertoire.

#!/bin/sh
for zip in *.zip
do
unzip $zip
#echo "$zip"
done
exit
tags: