From d13b284794b915d81d7faccc6e04c002b5882ffb Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Mon, 2 Jan 2023 10:41:37 -0800 Subject: Change 'automake' to 'GNU Coding Standards' --- src/index.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/index.sh') diff --git a/src/index.sh b/src/index.sh index f4d898e..75f20a5 100755 --- a/src/index.sh +++ b/src/index.sh @@ -6,14 +6,14 @@ shift get_title() { FILE="$1" - PATTERN=".*\(automake\).*" + PATTERN=".*\(GNU Coding Standards\).*" #Find pattern in file grep -Eo "$PATTERN" "$FILE" | #Remove tag sed 's/<[^>]*>//g' | \ #Remove '(automake)' - sed 's/(automake)//g' | \ + sed 's/(GNU Coding Standards)//g' | \ #Remove trailing space sed 's/[ ]*$//g' | \ #Replace '&' with '&' -- cgit