From d48aba79a944433f5e3710623e69d68d382f7454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Wed, 9 Jul 2014 22:48:49 +0200 Subject: [PATCH] _lp_cpu_load: fix quoting on Darwin/BSD --- liquidprompt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liquidprompt b/liquidprompt index 2ec222d..cfa67fb 100755 --- a/liquidprompt +++ b/liquidprompt @@ -155,7 +155,7 @@ case "$LP_OS" in # If you have problems with syntax coloring due to the following # line, do this: ln -s liquidprompt liquidprompt.bash # and edit liquidprompt.bash - read bol load eol <<<$( LANG=C sysctl -n vm.loadavg ) + read bol load eol <<<"$( LANG=C sysctl -n vm.loadavg )" echo "$load" } ;;