5 lines
77 B
Bash
5 lines
77 B
Bash
|
#!/bin/sh
|
||
|
# Create new window
|
||
|
tmux neww -n dev
|
||
|
tmux send-keys -t 0 'cdd' C-m
|