Featured
bash
unzip *
Posted by Jean-Michel Frouin on .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