Use C-M for return carriage for tmux.
Conflicts: stack.sh
This commit is contained in:
parent
c20428241a
commit
3ad59ea151
1 changed files with 11 additions and 6 deletions
5
stack.sh
5
stack.sh
|
@ -915,6 +915,10 @@ fi
|
||||||
function screen_it {
|
function screen_it {
|
||||||
NL=`echo -ne '\015'`
|
NL=`echo -ne '\015'`
|
||||||
if [[ "$ENABLED_SERVICES" =~ "$1" ]]; then
|
if [[ "$ENABLED_SERVICES" =~ "$1" ]]; then
|
||||||
|
if [[ "$USE_TMUX" =~ "yes" ]]; then
|
||||||
|
tmux new-window -t stack -a -n "$1" "bash"
|
||||||
|
tmux send-keys "$2" C-M
|
||||||
|
else
|
||||||
screen -S stack -X screen -t $1
|
screen -S stack -X screen -t $1
|
||||||
# sleep to allow bash to be ready to be send the command - we are
|
# sleep to allow bash to be ready to be send the command - we are
|
||||||
# creating a new window in screen and then sends characters, so if
|
# creating a new window in screen and then sends characters, so if
|
||||||
|
@ -922,6 +926,7 @@ function screen_it {
|
||||||
sleep 1
|
sleep 1
|
||||||
screen -S stack -p $1 -X stuff "$2$NL"
|
screen -S stack -p $1 -X stuff "$2$NL"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# create a new named screen to run processes in
|
# create a new named screen to run processes in
|
||||||
|
|
Loading…
Reference in a new issue