This website requires JavaScript.
Explore
Help
Sign In
jorge
/
my_scripts
Watch
1
Star
0
Fork
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Files
master
my_scripts
/
bash
/
zip.sh
T
Add File
New File
Upload File
Apply Patch
Copy Permalink
Download directory as ZIP
Download directory as TAR.GZ
Delete Directory
7 lines
73 B
Bash
Raw
Permalink
Normal View
History
Unescape
Escape
testing adding a comment
2021-03-11 12:43:50 -08:00
#comment
Script to quickly zip something with a date tag for deliverables
2018-11-09 10:28:17 -08:00
for
i
;
do
7z -tzip a
"
$i
"
_
$(
date +%m%d%y
)
.zip
"
$i
"
;
done
;
Reference in New Issue
Copy Permalink