Last active
February 2, 2026 11:37
-
-
Save gotnix/9369092 to your computer and use it in GitHub Desktop.
tmux 准备工作环境
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tmux new-session -d -n GoAgent -s back 'python /opt/goagent/local/proxy.py' \; \ | |
| new-window -d -c '~/' -n ROOT 'su -' \; \ | |
| new-window -d -c '~/' -n iRuby 'irb' \; split-window -d -c '~/' -h -p 50 -t back:3.0 \; \ | |
| new-window -d -c '/tmp/t1/' -n TEMP \; \ | |
| select-window -t back:2 \; attach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment