Files
slide/sbin/run_once.sh
2019-01-31 09:00:06 +01:00

8 lines
193 B
Bash
Executable File

#!/bin/bash
me="$(basename "$0")";
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
running=$(ps h -C "$me" | grep -wv $$ | wc -l);
[[ $running > 1 ]] && exit;
slide $@