linux shell script to unzip zip files in place code example
Example 1: unzip command in linux
unzip file.zip -d destination_folder
Example 2: how to unzip using tar
tar -xf archive.tar.gz
unzip file.zip -d destination_folder
tar -xf archive.tar.gz