j'ai besoin d'extraire un fichier war avec une unzip
sortie sans commentaires
je le fais comme ça -
unzip myFile.war -d /home/app/
mais cela crée une sortie verbeuse. Comment puis-je empêcher cela?
j'ai besoin d'extraire un fichier war avec une unzip
sortie sans commentaires
je le fais comme ça -
unzip myFile.war -d /home/app/
mais cela crée une sortie verbeuse. Comment puis-je empêcher cela?
Réponses:
Vous pouvez décompresser discrètement, utilisez simplement l'option -qq (voir man unzip
)
-q perform operations quietly (-qq = even quieter). Ordinarily
unzip prints the names of the files it's extracting or testing,
the extraction methods, any file or zipfile comments that may be
stored in the archive, and possibly a summary when finished with
each archive. The -q[q] options suppress the printing of some
or all of these messages.
Votre commande devient:
unzip -qq myFile.war -d /home/app/