6 lines
47 B
Bash
Executable File
6 lines
47 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! pgrep -x $1; then
|
|
${@:1}
|
|
fi
|