gist/irc/piraatit/messi.bash

14 lines
496 B
Bash
Raw Normal View History

2018-01-22 20:08:13 +01:00
#!/usr/bin/env bash
# Copied from https://stackoverflow.com/a/8880633 except the nicks
## declare an array variable
declare -a arr=("janneone" "mbrsk" "mielipuoli" "nyos" "usvi" "vhautaka" "yaamboo" "lash-" "d200b" "talikka" "arimartti" "scoffa")
## now loop through the above array
2023-05-18 11:41:11 +02:00
for i in "${arr[@]}"; do
echo "/msg GroupServ invite !ppfi-aktiivit $i"
# or do whatever with individual element of the array
2018-01-22 20:08:13 +01:00
done
# You can access them using echo "${arr[0]}", "${arr[1]}" also