mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
16 lines
229 B
Bash
Executable File
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
|