Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
#!/bin/bash
cd $2
if [ -e $1 ] ; then
strFile=`date %d%m%y`
myHost=`hostname`
strFile=$strFile"-"$myHost".zip"
# echo $strFile
strTime=`date %H%M%S`
# echo $strTime
mv $1 $strTime$1
zip $strFile -q -9 -o -m $strTime$1
else
echo "file not found"
fi