zm
2021-04-02 d6aa91642bb270e8309831d85aa1e7e09629e4da
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
 
basepath=$(cd `dirname $0`; pwd)
result=$(crontab -l|grep -i "* * * * * $basepath/queue.sh"|grep -v grep)
if [ ! -n "$result" ]
then
crontab -l > createcrontemp && echo "* * * * * $basepath/queue.sh" >> createcrontemp && crontab createcrontemp && rm -f createcrontemp
echo -e "\033[32mOk.\033[0m"
else
echo "The process has been add ."
fi