Script to quickly zip something with a date tag for deliverables

This commit is contained in:
Jorge Vásquez Pérez
2018-11-09 10:28:17 -08:00
parent df057165a7
commit bf51a3275e
Executable
+5
View File
@@ -0,0 +1,5 @@
for i;
do
7z -tzip a "$i"_$(date +%m%d%y).zip "$i";
done;