8 lines
186 B
Bash
8 lines
186 B
Bash
#!/bin/sh
|
|
|
|
cd /home/zgrep/offtopiabday;
|
|
if [ -e "atm/$1.txt" ]; then
|
|
msg="$(cat /home/zgrep/zwsp)$(cat "atm/$1.txt")"
|
|
rm "atm/$1.txt";
|
|
/home/zgrep/offtopiabday/privmsg "$3" "$msg"
|
|
fi
|