我正在尝试检查某个脚本(Backup_18_04.sh)是否今天已运行。
我只希望它每天运行一次。
我找到了这个,但是它不起作用。
我不知道它正在检查什么?
today=`/bin/date -d today '+%m-%d-%Y_%I:%M-%p'`
if [ -f /media/storagedrive/Ubuntu_Mate_18.04/$today ]
then
echo It exists
else
echo It does not exist
fi
我正在尝试检查某个脚本(Backup_18_04.sh)是否今天已运行。
我只希望它每天运行一次。
我找到了这个,但是它不起作用。
我不知道它正在检查什么?
today=`/bin/date -d today '+%m-%d-%Y_%I:%M-%p'`
if [ -f /media/storagedrive/Ubuntu_Mate_18.04/$today ]
then
echo It exists
else
echo It does not exist
fi