New command 'tcons' to be like 'wcons' but using tmux instead of x windows

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12557 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2012-05-07 19:03:44 +00:00
parent 95db581fae
commit 0f753a95d0

18
xCAT-client/bin/tcons Executable file
View File

@ -0,0 +1,18 @@
#!/bin/sh
f=1
p=0
for i in `nodels $1`; do
if [ "$f" = 1 ]; then
f=0
qdate=$((`date +%s`+5))
tmux new-session -d -s tcons.$$ -x 800 -y 800 "rcons $i;if [ \`date +%s\` -lt $qdate ]; then echo Press enter to close; read qdate; fi"
continue
fi
tmux select-pane -t $p
p=$((p+1))
qdate=$((`date +%s`+5))
tmux split -h "rcons $i;if [ \`date +%s\` -lt $qdate ]; then echo Press enter to close; read qdate; fi"
tmux select-layout tiled
done
tmux select-pane -t 0
tmux attach -t tcons.$$