1
我有以下bash腳本:添加一個標誌,bash腳本
if
ps aux | grep -E "[i]tunes_exporter.py" > /dev/null
then
echo "Script is already running. Skipping"
else
"$DIR/itunes_exporter.py"
fi
我想一個-f
標誌添加到itunes_exporter.py
命令。例如:
"$DIR/itunes_exporter.py -f"
但後來我得到以下錯誤:
-f: No such file or directory
我將如何正確添加-f
標誌?
可以使用'grep的-q'而不是管道到'的/ dev/null'。 –