1 2 3 4 5 6 7
#!/bin/bash DUMMY="bin/.daemon_run_dummy" if [[ -f $DUMMY ]]; then rm $DUMMY else touch $DUMMY fi