Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

tar gz

# compress
tar -czvf projects.tar.gz projects/
# extract
tar -xzvf projects.tar.gz

-c, --create
      create a new archive
-x, --extract, --get
      extract files from an archive
-z, --gzip, --gunzip --ungzip
-v, --verbose
      verbosely list files processed
-f, --file ARCHIVE
      use archive file or device ARCHIVE

tar [-] A --catenate --concatenate | c --create | d --diff --compare | --delete | r --append | t --list |
    --test-label | u --update | x --extract --get [options] [pathname ...]
Comment

tar.gz terminal

tar -xzvf archive.tar.gz
Comment

tar gz linux command

tar -czvf projects.tar.gz projects/
Comment

linux tar gz

# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
Comment

linux extract tar.gz

tar –xvzf documents.tar.gz
Comment

Creating tar.gz

tar cfz <Required tarball name> <File names>
Comment

tar.gz

tar -xvzf community_images.tar.gz
Comment

make tar.gz

tar -czvf projects.tar.gz $HOME/projects/
Comment

Linux tar.gz

tar -xzf archive-name.tar.gz
cd archive-name
./configure
make
sudo make install
Comment

PREVIOUS NEXT
Code Example
Shell :: echo export path 
Shell :: linux require a password to open a certain file 
Shell :: restart mac 
Shell :: how to delete history in linux 
Shell :: open chrome without web security mac 
Shell :: install cmake debian 
Shell :: checkout to last commit git 
Shell :: how to install pygame windows 10 
Shell :: screen recorder for ubuntu 
Shell :: bash suppress error code 
Shell :: git bash anaconda 
Shell :: npm bootstrap 
Shell :: find npm version 
Shell :: check user terminal 
Shell :: git remove file from history 
Shell :: ubuntu version 
Shell :: install x server wsl2 
Shell :: awk if else statement 
Shell :: ngx-material-file-input 
Shell :: java path ubuntu 20.04 
Shell :: install vim mac 
Shell :: how to run deb file 
Shell :: gh login with github 
Shell :: Failed at the sharp@0.16.2 install script 
Shell :: search git -G 
Shell :: cim specific file drush 
Shell :: how to disable password for ssh sudo users only 
Shell :: push code to github repository from command line 
Shell :: install redis-cli on ec2 
Shell :: windows vpn service 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =