Hey, i have some problems with bash..
want to check if the ROBSTER process is running R开发者_开发知识库UNNING times if not start until;
#!/bin/sh
SERVICE='ROBSTER'
RUNNING=20
var=$(ps aux | grep $SERVICE|grep -v SCREEN|wc -l)
echo $var
if [ $var -gt $RUNNING ]
then
for i in $(seq $var RUNNING)
do
echo "start"
done
fi
but it wont work :-/ :D hope you could help me
ps aux | grep ROBSTER|grep -v SCREEN
after u have changed the question:
var=$(ps aux | grep ROBSTER|grep -v SCREEN|wc -l)
echo $var
if [ var -gt 10 ]
then
do run your process the number of times you need
fi
精彩评论