我有以下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:没有这样的文件或目录
如何正确添加-f
标志?
答案 0 :(得分:2)
你应该写它"$DIR/itunes_exporter.py" -f