URI: 
       gopherman-news - 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
       ---
       gopherman-news (421B)
       ---
            1 #!/bin/sh
            2 
            3 channel="irc.libera.chat/#gopherproject"
            4 #channel="#bitreich-meme"
            5 
            6 export PATH="$PATH:/home/annna/bin"
            7 
            8 gophermannews="$(gpt 'Please write a short phrase beginning with "Gopher Man does ..." like the Florida Man cases in a funny way using technical gopher protocol and inter punch lines. Only output the phrase."')"
            9 
           10 if [ -n "${gophermannews}" ];
           11 then
           12         annna-say -c "${channel}" "NEWS: ${gophermannews}"
           13 fi
           14 
           15