8 lines
193 B
Bash
Executable File
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 $@
|