From e53404e3494b6147a30870fc9f98388a4adc1837 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 2 Aug 2017 12:58:08 +1000 Subject: [PATCH] general: Fix awk missing backslash --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index d473f385..f4743eef 100755 --- a/neofetch +++ b/neofetch @@ -886,7 +886,7 @@ get_cpu() { ;; *) - cpu="$(awk -F ': | @' '/model name|Processor|^cpu model|chip type|^cpu type/ + cpu="$(awk -F ': | @' '/model name|Processor|^cpu model|chip type|^cpu type/\ {printf $2; exit}' "$cpu_file")" [[ "$cpu" == *"processor rev"* ]] && \