annna-alive - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
annna-alive (155B) | |
--- | |
1 #!/bin/sh | |
2 # | |
3 # Check if annna is alive. | |
4 # Use it this way: | |
5 # | |
6 # if annna-alive; then do-something; fi | |
7 # | |
8 | |
9 | |
10 [ -z "$(pgrep -U annna -x ii)" ] && exit 1 | |
11 exit 0 | |
12 |