Home > Software design >  Linux bash unzip only one files with archive file zip
Linux bash unzip only one files with archive file zip

Time:01-28

I have zip file = file.zip, inside are

f1.txt

f2.txt

f3.txt

...

and i need unpack only f2.txt in linux bash.

CodePudding user response:

unzip -j file.zip f2.txt -d "/destination/path"

  •  Tags:  
  • Related