I need to pull a single file from a ZIP file which I know the path to. Is there a command like the following:
unzip -d . myarchive.zip path/to/zipped/file.txt
Unfortunately, the above command extracts and recreates the entire path to the file at ./path/to/zipped/file.txt. Is there a way for me to simply pull the file out into a specified directory?

