ZIP tips and tricks in Linux
View List of files inside a zip file:
unzip -l filename.zip (list files )
Extract Single File from a zip file:
unzip -j "archive.zip" "archive/filename.zip" -d .
View List of files inside a zip file:
unzip -l filename.zip (list files )
Extract Single File from a zip file:
unzip -j "archive.zip" "archive/filename.zip" -d .