How can I check a file exists and execute a command if not?

后端 未结 7 1511
星月不相逢
星月不相逢 2020-12-30 21:35

I have a daemon I have written using Python. When it is running, it has a PID file located at /tmp/filename.pid. If the daemon isn\'t running then PID file doesn\'t exist.

7条回答
  •  感动是毒
    2020-12-30 21:43

    ls /tmp/filename.pid
    

    It returns true if file exists. Returns false if file does not exist.

提交回复
热议问题