gist/irc/piraatit/undo-registered.bash

20 lines
961 B
Bash
Raw Normal View History

2018-05-25 07:54:11 +02:00
#!/usr/bin/env bash
# Copied from https://stackoverflow.com/a/8880633 except the nicks
## declare an array variable
2023-05-18 11:41:11 +02:00
declare -a arr=("#aaltopiraatit" "#grafiikka" "#hame" "#helsinki" "#hepihalko" "#kaakko" "#keski-suomi" "#mediaseuranta" "#pinu_hallitus" "#piraatit" "#piraattinuoret" "#piraattipuolue" "#piraattivpn" "#pirkanmaa" "#ppfi" "#sateenkaaripiraatit" "#sivusto" "#toiminta" "#tyoryhmaorganisaatiomalli" "#uusimaa" "#vaaliteltta" "#varainhankinta" "#varsinais-suomi" "#verkkopalvelut" "#mikaela")
2018-05-25 07:54:11 +02:00
## now loop through the above array
2023-05-18 11:41:11 +02:00
for i in "${arr[@]}"; do
echo "/msg ChanServ flags $i \$registered -VA"
# or do whatever with individual element of the array
2018-05-25 07:54:11 +02:00
done
## now loop through the above array
2023-05-18 11:41:11 +02:00
for i in "${arr[@]}"; do
echo "/msg ChanServ flags $i *!*@gateway/bridge/matrix/diasp.in -VA"
# or do whatever with individual element of the array
2018-05-25 07:54:11 +02:00
done
# You can access them using echo "${arr[0]}", "${arr[1]}" also