File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -80,5 +80,9 @@ Here is the list of examples in alphabetical order by filename along with a brie
80
80
- Shows how to use ` argparse ` to easily support sub-commands within your cmd2 commands
81
81
- [ table_creation.py] ( https://github.com/python-cmd2/cmd2/blob/master/examples/table_creation.py )
82
82
- Contains various examples of using cmd2's table creation capabilities
83
+ - [ tmux_launch.sh] ( https://github.com/python-cmd2/cmd2/blob/master/examples/tmux_launch.sh )
84
+ - Shell script that launches two applications using tmux in different windows/tabs
85
+ - [ tmux_split.sh] ( https://github.com/python-cmd2/cmd2/blob/master/examples/tmux_split.sh )
86
+ - Shell script that launches two applications using tmux in a split pane view
83
87
- [ unicode_commands.py] ( https://github.com/python-cmd2/cmd2/blob/master/examples/unicode_commands.py )
84
88
- Shows that cmd2 supports unicode everywhere, including within command names
Original file line number Diff line number Diff line change @@ -29,6 +29,6 @@ if [ $# -eq 1 ]
29
29
SECOND_COMMAND=$2
30
30
fi
31
31
32
- tmux new-session " $FIRST_COMMAND ; read" \; \
32
+ tmux new-session -s " tmux split pane demo " " $FIRST_COMMAND ; read" \; \
33
33
split-window " $SECOND_COMMAND ; read" \; \
34
34
select-layout even-vertical
You can’t perform that action at this time.
0 commit comments