From 5c7b5f3ff8210c4730635c72a4a881aed8988724 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Fri, 15 Apr 2022 15:53:50 -0400 Subject: [PATCH] DUH.... `sed` replaces with global... --- tcshrc.prompt.final | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcshrc.prompt.final b/tcshrc.prompt.final index 9800044..49918a8 100644 --- a/tcshrc.prompt.final +++ b/tcshrc.prompt.final @@ -21,7 +21,7 @@ if( ${prompt_hcolor} == 0 ) then set reference_colors=`shuf -e $reference_colors` else #echo "FALLBACK COLOR!" - set reference_colors=`echo $reference_colors | sed -e 's/ /\n/' | sort -R | xargs` + set reference_colors=`echo $reference_colors | sed -e 's/ /\n/g' | sort -R | xargs` endif endif @@ -36,7 +36,7 @@ if( ${prompt_hsym} == 0 ) then # && ${prompt_hcolor} == 0 ) then #set reference_colors=`shuf -e $reference_colors` else #echo "FALLBACK CHAR!" - set referencechars=`echo $referencechars | sed -e 's/ /\n/' | sort -R | xargs` + set referencechars=`echo $referencechars | sed -e 's/ /\n/g' | sort -R | xargs` endif endif