diff options
| author | jason | 2017-04-20 16:36:34 -0600 |
|---|---|---|
| committer | jason | 2017-04-21 11:39:13 -0600 |
| commit | cfce7547cd36c8ab7f53fb620e0297e722761d8d (patch) | |
| tree | efedc1d027779445575e55af2805386702e50513 /scripts/bin/run-once | |
| parent | f176cf30293cf2793f83026a3587752b69b128a9 (diff) | |
| download | dotfiles-cfce7547cd36c8ab7f53fb620e0297e722761d8d.tar.gz dotfiles-cfce7547cd36c8ab7f53fb620e0297e722761d8d.zip | |
Update move in scripts, add bin scripts
Diffstat (limited to 'scripts/bin/run-once')
| -rwxr-xr-x | scripts/bin/run-once | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/bin/run-once b/scripts/bin/run-once new file mode 100755 index 0000000..56f3709 --- /dev/null +++ b/scripts/bin/run-once | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #! /bin/bash | ||
| 2 | |||
| 3 | # Run program unless it's already running. | ||
| 4 | |||
| 5 | if [ -z "`ps -Af | grep -o -w ".*$1" | grep -v grep | grep -v run-once`" ]; then | ||
| 6 | $@ | ||
| 7 | fi \ No newline at end of file | ||