10 lines
164 B
Bash
Executable File
10 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ps ax | grep ii | grep -v grep > /dev/null; then
|
|
exit 0
|
|
else
|
|
>&2 echo "ii isn't running, let's restart things…"
|
|
pkill ii
|
|
pkill librejam_irc_
|
|
fi
|