From d1e86f89aba8bafd04c8644a86ea0614747f7275 Mon Sep 17 00:00:00 2001 From: Marcus Whybrow Date: Thu, 24 May 2012 02:48:05 +0100 Subject: [PATCH] Escaped a singular double quote mark used for awk separation. It was messing up code highlighting on github, and we can't have that! --- msm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msm b/msm index 90eb718..47b16f6 100755 --- a/msm +++ b/msm @@ -734,7 +734,7 @@ init() { # if not empty, set the property using declare if [ ! -z "$line" ]; then name="$(echo $line | awk -F '=' '{print $1}')" - value="$(echo $line | awk -F '"' '{print $2}')" + value="$(echo $line | awk -F '\"' '{print $2}')" fi case "$name" in