aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/bin/run-once
blob: b49cec859b665ccb9c1a51bb8762e65fae13dfec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

# run_keybase -a doesn't work
export KEYBASE_AUTOSTART=1

# Run program unless it's already running.

if [ -z "`ps -Af | grep -o -w ".*$1" | grep -v grep | grep -v run-once`" ]; then
  $@
fi