rwxrob-dot/scripts/chat
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

16 lines
229 B
Bash
Executable File

#!/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