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 :: Error: Unable to find a match: centos-release-openstack-queens 
Shell :: add stetho plugin ionic 
Shell :: delete archivelog sysdate-1 
Shell :: modify file modified time linux 
Shell :: check iptables rules in kubernetes service 
Shell :: protonvpn install ubuntu debian 
Shell :: npm install proxy 
Shell :: boucle bash 
Shell :: install grub efi arch 
Shell :: kubectl tls skip verify 
Shell :: git branch command 
Shell :: linux recursive find file content 
Shell :: how to commit to main branch in git 
Shell :: Merge Remote Repository With Local Repository in git command 
Shell :: merge last three commits squash 
Shell :: how to push current code to new branch git 
Shell :: drupal export db to backup 
Shell :: check service status in linux 
Shell :: how to get un merged branch git 
Shell :: blame in github 
Shell :: Install Redis GUI on Ubuntu 20.04 
Shell :: stop avd 
Shell :: how to run pkg file on mac terminal 
Shell :: adobe photoshop on linux ubuntu 
Shell :: instaling composer linux 
Shell :: how to remove a file from git but keep local and ignore file 
Shell :: oh my zsh 
Shell :: howto register dll windows 10 
Shell :: create windows 10 bootable usb in ubuntu 
Shell :: git diff between one file 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =