Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

7zip commandline example

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 :: rm multiple folders 
Shell :: ansible copy 
Shell :: add gif to readme.so 
Shell :: cmd find file dir 
Shell :: install adb 
Shell :: stop tracking a file git 
Shell :: magento shell reindex 
Shell :: add arabic keyboard ubuntu 20.04 
Shell :: Remove all your local git branches but keep master 
Shell :: add user to sudo 
Shell :: uninstall package with pip 
Shell :: windows where are pip packages installed 
Shell :: how to refresh cache on github 
Shell :: python run java jar 
Shell :: docker run in interactive mode 
Shell :: how to install httrack in kali linux 
Shell :: change window name command prompt 
Shell :: list all gpg keys ubuntu 
Shell :: npm global installation not showing 
Shell :: github change last commit message 
Shell :: git change personal token to login and passowrd 
Shell :: wsl windows directory 
Shell :: after installing kali what next 
Shell :: emacs copy paste 
Shell :: dockerfile default workdir 
Shell :: Create Local Github Repo 
Shell :: powershell open file 
Shell :: does git bash have bashrc 
Shell :: ls by size 
Shell :: How can I reset or revert a file to a specific revision? 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =