SLBR/tmuxinit.sh

12 lines
258 B
Bash
Raw Normal View History

2018-08-28 17:39:44 +00:00
#!/bin/sh
# tmuxinit.sh
# sets up a tmux session within the user's container
2018-08-28 17:39:44 +00:00
tmux new-session -d -n test
tmux select-window -t 0:0
tmux send -t 0:0 'nc -lkp 9090' ENTER
tmux split-window -h bash
tmux select-layout
tmux resize-pane -t 1 -L 60
tmux a