安排cron作业以运行shell scipt并选择选项

时间:2016-03-29 09:56:48

标签: shell cron crontab

以下是执行工具appTool

的选项
========================
+      Operations      +
========================
  (1) Quick Test
  (2) Help
  (3) Exit
========================

我想检查脚本是否正在运行并在没有运行时执行它,我创建了以下脚本。

#!/bin/bash

service=appTool
checkRunning=`ps -ef | grep -v grep | grep $service | wc -l > 0`

echo $checkRunning

if (( $(ps -ef | grep -v grep | grep $service | wc -l) > 0 ))
then
        echo "$service is running!!!"
else
        1| /etc/init.d/$service start
fi

执行脚本时,我希望在安排作业时传递选项1

如何实现?

0 个答案:

没有答案