2020-09-04 12:16:46 +02:00
|
|
|
#!/bin/sh
|
2021-07-29 16:02:20 +02:00
|
|
|
# Run a program in the background if it is not running already
|
2020-09-04 12:16:46 +02:00
|
|
|
#ps aux | grep -v $0 | grep -m 1 $1
|
|
|
|
|
echo -n "$1: "
|
|
|
|
|
pgrep ${2:-$1} -a | grep --color=never -m 1 . || ( echo Launching && ($1 >/dev/null 2>&1 &) )
|