To unzip a zip archive using the unzip command, you can use the following syntax:
unzip [options] archive.zip
For example, to unzip a file named test_archive.zip into the current directory, you would run:
unzip test_archive.zip
If you want to specify a directory to unzip the contents into, you can use the -d option followed by the directory name:
unzip -d destination_directory test_archive.zip
If the destination directory does not exist, unzip will create it.
