LoginSignup
3
2

More than 5 years have passed since last update.

unzipで複数のzipを解凍

Posted at

問題

unzip *.zip

のように普通に指定してやると,filename not matchedというエラー文が出ます.

対処法

シングルクォーテーションで囲む

unzip '*.zip'

*をエスケープ

unzip ¥*.zip
3
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2