Dézip tous les fichiers zip dans un répertoire approprié

ls *.zip|awk -F'.zip' '{print "unzip "$0" -d "$1}'|sh
Searcher