Zip: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
Line 74: Line 74:


| valign="top" |
| valign="top" |
* [[Chorke Academia Backup]]
* [[Google Cloud CLI]]
* [[Google Cloud CLI]]
* [[AWS CLI]]
* [[AWS CLI]]

Latest revision as of 10:48, 29 June 2024

sudo apt -qq update
sudo apt install -y zip unzip
unzip -V
zip -V

Compress

cd /etc/nginx
zip -r chorke-nginx_academia-production-20240628-T2023-ZP0800.zip sites-enabled
zip -r chorke-nginx_academia-production-20240628-T2023-ZP0800.zip sites-enabled -x default

Decompress

unzip -l chorke-nginx_academia-production-20240628-T2023-ZP0800.zip
unzip    chorke-nginx_academia-production-20240628-T2023-ZP0800.zip
unzip    chorke-nginx_academia-production-20240628-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 +'%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