Answers for "unzip command for windows terminal"

3

terminal unzip

sudo apt-get install unzip
unzip file.zip
Posted by: Guest on April-27-2021
1

cmd unzip windows

# Unzip files of the current directory calling the Powershell
powershell -Command "Get-ChildItem . -Filter *.zip | Expand-Archive -DestinationPath . -Force"
Posted by: Guest on September-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language