3
2
I'm looking to send commands to a separate tmux pane from vim and I figured the easiest way was to mkfifo a named pipe /tmp/cmds
and run bash < /tmp/cmds
to listen for commands to run.
I then do echo "echo \"hello world\" > /tmp/cmds"
as test, this only works for one command and xargs closes immediately. Is there any way to keep this running after more than one command?