From c775abfd8256f87ad2d54a592f96da597aa4a412 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Mon, 1 Jun 2009 09:02:10 -0500 Subject: [PATCH] escape backticks Signed-off-by: Dustin Kirkland --- screen-launcher-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen-launcher-install b/screen-launcher-install index af4757d8..e6cbfcb7 100755 --- a/screen-launcher-install +++ b/screen-launcher-install @@ -23,7 +23,7 @@ PKG="byobu" install_screen_launcher() { dest=$1 launcher="/usr/bin/screen-launcher" - launcher_line="`echo \$- | grep -qs i` && [ -x $launcher ] && $launcher" + launcher_line="\`echo \$- | grep -qs i\` && [ -x $launcher ] && $launcher" # Add it at the end echo "$launcher_line" >> "$dest" }