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"

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"