[20170708]tmux script例子.txt
[20170708]tmux script例子.txt
--//上個星期解決rac ora-12514問題時,因為要開啟多個視窗,非常麻煩,利用星期6,7看了一些文件,寫一個tmux script:
--//便於以後工作需要:
#! /bin/bash
tmux has-session -t oracle
if [ $? != 0 ]; then
tmux new-session -s oracle -d
tmux new-window -n bashgrid -t oracle
tmux new-window -n bashoracle -t oracle
tmux send-keys -t oracle:2 'su - grid' C-m
tmux send-keys -t oracle:3 'su - oracle' C-m
tmux select-window -t oracle:1
fi
tmux attach -t oracle
--//也可以這樣寫:
#! /bin/bash
tmux has-session -t oracle
if [ $? != 0 ]; then
tmux new-session -s oracle -d
tmux new-window -n bashgrid -t oracle 'su - grid'
tmux new-window -n bashoracle -t oracle 'su - oracle'
tmux select-window -t oracle:1
fi
tmux attach -t oracle
--//還可以利用配置檔案來實現例子:
source-file /etc/tmux.conf
new-session -s oracle -d
new-window -n bashgrid -t oracle "su - grid"
new-window -n bashoracle -t oracle "su - oracle"
#new-window -n bashgrid -t oracle
#new-window -n bashoracle -t oracle
#send-keys -t oracle:2 'su - grid' C-m
#send-keys -t oracle:3 'su - oracle' C-m
select-window -t oracle:1
--//使用配置檔案啟動必須後面有引數attach.例子:
tmux -f tmuxoracle.conf attach
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2141884/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20150529]man tmux less.txtUX
- txt.vim : Universal syntax script for all txt docs, logs and other types
- [20150425]tmux學習心得2.txtUX
- [20191202]tmux共享回話.txtUX
- [20170119]tmux與環境變數.txtUX變數
- [20141225]學習使用tmux心得.txtUX
- [20150427]tmux與INPUTRC定義衝突.txtUX
- tmuxUX
- [20181219]script使用小技巧.txt
- [20170912]sql injection例子.txtSQL
- [20200228]tmux completion.txtUX
- [20220610]tmux記錄操作內容.txtUX
- tmux配置UX
- tmux使用UX
- [20160919]sql注入例子.txtSQL
- [20170711]關於tmux共享會話問題.txtUX會話
- [20131217]pivot應用例子.txt
- [20221101]tmux使用問題copy和paste失效.txtUXAST
- Tmux 使用教程UX
- tmux resurrect 配置UX
- Tmux使用教程UX
- 快速重拾 TmuxUX
- Tmux入門教程UX
- Tmux 使用筆記UX筆記
- Tmux使用手冊UX
- tmux常用按鍵UX
- tmux使用備忘UX
- 在tmux中copyUX
- Tmux使用介紹UX
- tmux指令記錄UX
- [20231101]tmux環境變數的繼承問題.txtUX變數繼承
- Script
- tmux的超絕便利UX
- tmux 共享視窗大小UX
- tmux常用命令UX
- 1. 認識tmuxUX
- Tmux 入門介紹UX
- [20150224]ITL不足的測試例子.txt