1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #! /bin/bash
- echo "warning, this is still alphaware and noobware."
- echo "you have been warned"
- sleep 1
- echo "you will likely want to run something like:"
- echo "ii -i ~/irc -s irc.libera.chat -n whatevernickuwant"
- echo "and then to join manually:"
- echo "echo \"/join #witchlinux\" > ~/irc/irc.libera.chat/in"
- echo "(can use perpetualii input for simple /j or /join commands)"
- echo "and then to see the output, instead of \"tail -f \#witchlinux\", try:"
- echo "hiir \#witchlinux"
- echo "see man ii for more."
- echo "once you know what you're doing, you can comment out these introduction lines with a #"
- echo "enter your irc network, or enter for default [irc.libera.chat]:"
- read -e -i irc.libera.chat SERV
- echo "enter your irc network, or enter for default [#witchlinux]:"
- read -e -i \
- sayer() {
- read SAY
- poster
- }
- poster() {
- echo "$SAY" > ~/irc/$SERV/$CHAN/in
- sayer
- }
- sayer
|