Files
dotfiles/bin/run_once
2023-09-18 18:20:08 +02:00

4 lines
85 B
Bash
Executable File

#!/bin/dash
# Run program unless it's already running
pgrep $@ > /dev/null || ($@ &)