Comment where things start

This commit is contained in:
c0dev0id 2023-02-05 09:30:23 +01:00
parent 321dc3654b
commit b050adbc02
1 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,10 @@ BOTDIR="$PWD"
IRCIN="$BOTDIR/irc/$SERVER/$CHANNEL/in"
IRCOUT="$BOTDIR/irc/$SERVER/$CHANNEL/out"
###
### FUNCTIONS ###
###
# $1 message
say() {
echo "out> $1"
@ -165,6 +169,12 @@ weather() {
say "$(curl -s "https://wttr.in/$l?lang=de&format=%l:+%t+%C+%w+%h+Regen")"
}
###
### MAIN PROGRAM ###
###
mkdir -p "$BOTDIR/{irc,seen,karma}"
cd "$BOTDIR"