From 856ff6a0b0f49a28ddb326828351ca08acd68645 Mon Sep 17 00:00:00 2001 From: Jakub Chrpa Date: Wed, 3 Jan 2024 21:35:43 +0100 Subject: [PATCH] Changed the capitalization style to Title case. The string now becomes lowercase and the first letter gets capitalized, just how it is on the album. --- nespithefier.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nespithefier.sh b/nespithefier.sh index f03a9cf..5af021f 100755 --- a/nespithefier.sh +++ b/nespithefier.sh @@ -51,5 +51,6 @@ while IFS= read -r line ; do fi fi done - echo $final + final=${final,,} + echo ${final^} done < "${1:-/dev/stdin}"