Linux

Linux(CentOS7)zipファイルの解凍

Linux(CentOS7) ZIPファイルの解凍

環境
■OS
# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)

基本構成

unzip ファイル名

test.zipを解凍する場合

unzip test.zip

オプションを何もつけてない場合は
コマンドを実行した場所に解凍される。
zipファイルのある場所じゃないので注意

/tmpフォルダ内のtest.zipを解凍する場合

unzip /tmp/test.zip

/tmpフォルダ内のtext.zipを解凍する場合

unzip /tmp/test.zip

/tmpフォルダ内のtest.zipを/home/testuserフォルダに解凍する場合

unzip /tmp/test.zip -d /home/testuser

-Linux