Taking TMUX to the next level
Lets create something
I AM AN ARTIST, TO GIMP!
We know some tmux commands.
tmux new-session -s "foobar" -dBUT DID YOU KNOW??
tmux new-session -s "foobar" -d -c "$HOME/personal/developer-productivity"tmux new-window -n "foobar" -c "$HOME/personal"tmux switch-client -t "foobar"We can specify a command.
tmux new-window -n "foobar" [some command goes here]Always read the friendly manual (Abbrev'd as RTFM)
man tmuxQuick intro into CLI piping
prog1 | prog2 | prog3
Lets do an example