frouin.me

unzip *

Introduction

user

Jean-Michel Frouin

CTO @ WakeOnWeb.com


bash

unzip *

Posted by Jean-Michel Frouin on .
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
user

Jean-Michel Frouin

https://frouin.me

CTO @ WakeOnWeb.com