sudo apt -qq update
sudo apt install -y p7zip-full
7z
Compress
cd /etc/nginx
7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled
7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled -psadaqah!
7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled '-psadaqah!'
7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled '-x!default'
7z a chorke-nginx_academia-production-20240628-T2023-ZP0800.7z sites-enabled '-xr!default'
Decompress
7z l chorke-nginx_academia-production-20240628-T2023-ZP0800.7z
7z e chorke-nginx_academia-production-20240628-T2023-ZP0800.7z
7z x chorke-nginx_academia-production-20240628-T2023-ZP0800.7z
7z x chorke-nginx_academia-production-20240628-T2023-ZP0800.7z -psadaqah!
7z x chorke-nginx_academia-production-20240628-T2023-ZP0800.7z '-psadaqah!'
7z x chorke-nginx_academia-production-20240628-T2023-ZP0800.7z -o./chorke-nginx-academia-production/
Commands
a : Add files to archive
b : Benchmark
d : Delete files from archive
e : Extract files from archive (without using directory names)
h : Calculate hash values for files
i : Show information about supported formats
l : List contents of archive
rn : Rename files in archive
t : Test integrity of archive
u : Update files to archive
x : eXtract files with full paths
Cheatsheet
Type |
Compress |
Decompress |
Algorithm |
βͺ
|
7z |
time 7z a nginx_20240630-T1519-ZP0800.7z nginx |
time 7z x nginx_20240630-T1519-ZP0800.7z |
LZMA, LZMA2, PPMd, BZIP2, DEFLATE, Store |
π
|
zip |
time 7z a nginx_20240630-T1519-ZP0800.zip nginx |
time 7z x nginx_20240630-T1519-ZP0800.zip |
DEFLATE, BZIP2, LZMA, Store |
π’
|
tar.gz |
time tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.gz |
time 7z x nginx_20240630-T1519-ZP0800.tar.gz -so|7z x -si -ttar -onginx |
DEFLATE=LZ77+Huffman |
π’
|
tar.xz |
time tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.xz -txz |
time 7z x nginx_20240630-T1519-ZP0800.tar.xz -so|7z x -si -ttar -onginx |
LZMA2 |
π
|
tar.bz2 |
time tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.bz2 -tbzip2 |
time 7z x nginx_20240630-T1519-ZP0800.tar.bz2 -so|7z x -si -ttar -onginx |
BZIP2 |
π‘
|
DateTime Format
echo "$(date +'%Y%m%d-T%H%M')-Z$(date +'%z'|tr '+-' 'PM')"
:'
20240628-T2023-ZP0800
ββ 20240628
β ββ 2024 Β« %Y
β ββ 06 Β« m%
β ββ 28 Β« %d
ββ -T2023
β ββ - Β« -
β ββ T Β« Time
β ββ 20 Β« %H
β ββ 23 Β« %M
ββ -ZP0800
ββ - Β« -
ββ Z Β« Zone
ββ P Β« {P: Plus (+), M:Minus (-)}
ββ 0800 Β« Time Offset
'
References