Zip: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
cd /etc/nginx | cd /etc/nginx | ||
zip -r chorke-nginx_academia-production- | zip -r chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip sites-enabled | ||
zip -r chorke-nginx_academia-production- | zip -r chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip sites-enabled -x default | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Decompress== | ==Decompress== | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
unzip -l chorke-nginx_academia-production- | unzip -l chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip | ||
unzip chorke-nginx_academia-production- | unzip chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip | ||
unzip chorke-nginx_academia-production- | unzip chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip -d chorke-nginx-academia-production | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 32: | Line 32: | ||
│ ├─ D « Date | │ ├─ D « Date | ||
│ ├─ 2024 « %Y | │ ├─ 2024 « %Y | ||
│ ├─ 06 « m | │ ├─ 06 « %m | ||
│ └─ 28 « %d | │ └─ 28 « %d | ||
├─ -T2023 | ├─ -T2023 | ||
Line 53: | Line 53: | ||
* [https://en.wikipedia.org/wiki/ZIP_(file_format) ZIP] | * [https://en.wikipedia.org/wiki/ZIP_(file_format) ZIP] | ||
* [[Tar]] | * [[Tar]] | ||
* [[Jar]] | |||
| valign="top" | | | valign="top" | |
Latest revision as of 12:50, 17 March 2025
sudo apt -qq update sudo apt install -y zip unzip unzip -V zip -V
Compress
cd /etc/nginx
zip -r chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip sites-enabled
zip -r chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip sites-enabled -x default
Decompress
unzip -l chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip
unzip chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip
unzip chorke-nginx_academia-production-D20240628-T2023-ZP0800.zip -d chorke-nginx-academia-production
Explanation
-r: Recursive child folder -x: Exclude file from the archive -l: List the contents of the archive -f: Specifies the name of the archive
DateTime Format
echo "$(date +'D%Y%m%d-T%H%M')-Z$(date +'%z'|tr '+-' 'PM')"
:'
D20240628-T2023-ZP0800
├─ D20240628
│ ├─ D « Date
│ ├─ 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
| ||