annna-alive - annna - Annna the nice friendly bot. HTML git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/ DIR Log DIR Files DIR Refs DIR Tags DIR 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