From a35e9b8cf37980e1474ddd9c55a8eb3ff0f6c22a Mon Sep 17 00:00:00 2001 From: zeus Date: Tue, 11 Feb 2025 17:35:08 +0100 Subject: [PATCH] suppress final newline with echo to avoid confusion --- bash/prettify_PATH.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/prettify_PATH.sh b/bash/prettify_PATH.sh index 15e2a03..b7aeabc 100755 --- a/bash/prettify_PATH.sh +++ b/bash/prettify_PATH.sh @@ -1,5 +1,5 @@ #!/bin/bash # prettify PATH-Output: -echo $PATH | sed s/\:/\\n/g +echo -n $PATH | sed s/\:/\\n/g