tar
Compress
Command | Description |
---|---|
tar -cvzf /out/put/file/tar.targz /path/to/dir-or-file | compress dir or file to tar.gz |
tar -cvzf output.tar.gz /path/to/fils --exclude=*.swp | compress all dirs with files excluding files with fileending .swp |
Decompress
Command | Description |
---|---|
tar -xvzf /file/to/tar.targz | decompress tar.gz file |
`tar -xvzf /file/to/tar.targz -C /dest/path/ | decompress tar.gz to the destination path |