From 66185890e4dfad9b8d4c09999a0b87332c78f52c Mon Sep 17 00:00:00 2001 From: Scarsz Date: Thu, 18 Jun 2015 15:26:50 -0700 Subject: [PATCH] Quotation escaping fixes --- functions/fn_start | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_start b/functions/fn_start index d6a25819b..228cd7590 100644 --- a/functions/fn_start +++ b/functions/fn_start @@ -141,8 +141,8 @@ if [ "${tmuxwc}" -eq 0 ]; then echo "" echo "Command" echo "=================================" - echo "tmux new-session -d -s "${servicename}" "${executable} ${parms}"" - echo "tmux new-session -d -s "${servicename}" "${executable} ${parms}"" >> "${scriptlog}" + echo "tmux new-session -d -s \"${servicename}\" \"${executable} ${parms}\"" + echo "tmux new-session -d -s \"${servicename}\" \"${executable} ${parms}\"" >> "${scriptlog}" echo "" echo "Error" echo "================================="