Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

7zip cmd

Add the folder containing 7z.exe to PATH variable: https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/
Restart your cmd/terminal and then use one of the following commands:

# Extract to current folder:
7z x "C:example.zip"
  
# Extract to a sub-folder (Makes it if it doesnt already exist):
7z x "C:example.zip" -oFOLDER_NAME_HERE

# Extract to a specific folder (Makes it if it doesnt already exist):
7z x "C:example.zip" -o"C:FOLDER_NAME_HERE"

For more info: https://www.dotnetperls.com/7-zip-examples
Comment

unzip 7z cli

7z x example.zip -oexample
Comment

PREVIOUS NEXT
Code Example
Shell :: getopts without argument 
Shell :: unix check ram 
Shell :: npm install less-loader 
Shell :: install pytorch for cuda 10.0 
Shell :: how to convert pyqt5 to python 
Shell :: scp server to local 
Shell :: bash create empty array 
Shell :: grep nth line 
Shell :: how to install kind in ubuntu 
Shell :: sudo add permissions to user 
Shell :: sudo snap linux store 
Shell :: git change commit author 
Shell :: setup ngrok in windows subsystem for linux 
Shell :: flutter add dependency command line 
Shell :: how to get updates in linux 
Shell :: fedora how to uninstall snapd 
Shell :: how to remove user from the group 
Shell :: grep find and show lines after 
Shell :: install auth token 
Shell :: git change commit 
Shell :: copy from remote to local 
Shell :: rails scaffold 
Shell :: chocolatey installation 
Shell :: kubernetes get logs from pod 
Shell :: aac anticheat 
Shell :: install google drive on ubuntu 
Shell :: linux, get host user 
Shell :: how to rename origin in git 
Shell :: how to merge git branch to master 
Shell :: next js npm install 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =