Introduction
How can I unzip a file with the *.zip extension?
You would be able to have the files extracted in a specific directory, use the -d (directory folder) option of the unzip command.
Procedure
You would be able to follow the example provided below to complete an extraction:
unzip -q filename.zip -d ./directorypath
*don't forget to replace "filename.zip" with your actual zip file.
You will want to make you provide the path to the directory you would like. Do not forget that the archive should be extracted to a directory of your choosing. Otherwise, it might create undesired issues.