From d8addb3e3b16ec20a07cf3aa0ffd9ba556854202 Mon Sep 17 00:00:00 2001 From: Joseph Durel Date: Thu, 1 Feb 2018 23:28:02 -0500 Subject: [PATCH] =?UTF-8?q?Change=20`echo`=20=E2=86=92=20`printf`=20for=20?= =?UTF-8?q?consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index b460019f..d8f856e8 100755 --- a/neofetch +++ b/neofetch @@ -3265,7 +3265,7 @@ uppercase() { if ((bash_version >= 4)); then printf "%s" "${1^}" else - echo "$1" + printf "%s" "$1" fi }