「Linux入門」unzipコマンドでディレクトリを指定して解凍する方法
使用例
1.解凍先のディレクトリを指定
# unzip sample.zip -d /data/20210218/
2.指定ディレクトリにアーカイブを展開
# unzip -d /tmp/2021/ sample.zip
3.アーカイブの中身を表示
# unzip -l sample.zip
Coding Changes the World
使用例
1.解凍先のディレクトリを指定
# unzip sample.zip -d /data/20210218/
2.指定ディレクトリにアーカイブを展開
# unzip -d /tmp/2021/ sample.zip
3.アーカイブの中身を表示
# unzip -l sample.zip