7Zip: Difference between revisions
Jump to navigation
Jump to search
Line 43: | Line 43: | ||
| '''7z''' || <code>7z a nginx_20240630-T1519-ZP0800.7z nginx</code> || <code>7z x nginx_20240630-T1519-ZP0800.7z</code> || 🟠 | | '''7z''' || <code>7z a nginx_20240630-T1519-ZP0800.7z nginx</code> || <code>7z x nginx_20240630-T1519-ZP0800.7z</code> || 🟠 | ||
|- | |- | ||
| '''zip''' || <code>7z a nginx_20240630-T1519-ZP0800.zip nginx</code> || <code>7z x nginx_20240630-T1519-ZP0800.zip</code> || | | '''zip''' || <code>7z a nginx_20240630-T1519-ZP0800.zip nginx</code> || <code>7z x nginx_20240630-T1519-ZP0800.zip</code> || 🟢 | ||
|- | |- | ||
| '''tar.gz''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.gz</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.gz -so|7z x -si -ttar -onginx</code> || | | '''tar.gz''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.gz</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.gz -so|7z x -si -ttar -onginx</code> || 🟢 | ||
|- | |- | ||
| '''tar.xz''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.xz -txz</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.xz -so|7z x -si -ttar -onginx</code> || 🟠 | | '''tar.xz''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.xz -txz</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.xz -so|7z x -si -ttar -onginx</code> || 🟠 | ||
|- | |- | ||
| '''tar.bz2''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.bz2 -tbzip2</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.bz2 -so|7z x -si -ttar -onginx</code> || | | '''tar.bz2''' || <code>tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.bz2 -tbzip2</code> || <code>7z x nginx_20240630-T1519-ZP0800.tar.bz2 -so|7z x -si -ttar -onginx</code> || 🟡 | ||
|} | |} | ||
Revision as of 06:37, 30 June 2024
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 | ⚪ |
---|---|---|---|
7z | 7z a nginx_20240630-T1519-ZP0800.7z nginx |
7z x nginx_20240630-T1519-ZP0800.7z |
🟠 |
zip | 7z a nginx_20240630-T1519-ZP0800.zip nginx |
7z x nginx_20240630-T1519-ZP0800.zip |
🟢 |
tar.gz | tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.gz |
7z x nginx_20240630-T1519-ZP0800.tar.gz -so|7z x -si -ttar -onginx |
🟢 |
tar.xz | tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.xz -txz |
7z x nginx_20240630-T1519-ZP0800.tar.xz -so|7z x -si -ttar -onginx |
🟠 |
tar.bz2 | tar cf - nginx|7z a -si nginx_20240630-T1519-ZP0800.tar.bz2 -tbzip2 |
7z x nginx_20240630-T1519-ZP0800.tar.bz2 -so|7z x -si -ttar -onginx |
🟡 |
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
| ||