anishathalye / seashells

The official client for seashells.io 🐚
https://seashells.io
MIT License
708 stars 20 forks source link

Streaming a live terminal window #10

Closed ndench closed 6 years ago

ndench commented 6 years ago

Is it possile to stream a live terminal window not just the output of a single command?

anishathalye commented 6 years ago

Try bash | seashells ?

ndench commented 6 years ago

Thanks, that works pretty well, except it only shows the output of every command and not the prompt and the command that you're typing. I actually found this that works great though: https://www.reddit.com/r/commandline/comments/263afq/bashtmux_pipe_the_output_of_a_detached_tmux/

You pipe tmux into a file with pipe-pane -o 'cat /tmp/tmuxpipe', then you can tail -f /tmp/tmuxpipe | seashells and it works great.

Thanks for you help.