rwxrob-dot/scripts/chat

16 lines
229 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
#!/bin/sh
buf="$*"
if test -n "$buf"; then
#echo "*$buf" >$WEECHAT_FIFO
tmux -L live send -t 2 "$buf" Enter
exit
fi
IFS=
while read -r line; do
#echo "*$line" >$WEECHAT_FIFO
tmux -L live send -t 2 "$line" Enter
done