From eb9061aeadb7e4be18098ff3063b5ec2b41d7c68 Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Thu, 25 Jan 2024 23:36:03 +0000 Subject: [PATCH] rename(unitproc/bkt-replace_apostrophes):Was replace_contractions - Note: Renaming function to be more generally applicable for apostrophe replacement in not only contractions but possessive cases. --- ...eplace_contractions => bkt-replace_apostrophes} | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) rename unitproc/{bkt-replace_contractions => bkt-replace_apostrophes} (91%) diff --git a/unitproc/bkt-replace_contractions b/unitproc/bkt-replace_apostrophes similarity index 91% rename from unitproc/bkt-replace_contractions rename to unitproc/bkt-replace_apostrophes index e03e659..f045c1b 100644 --- a/unitproc/bkt-replace_contractions +++ b/unitproc/bkt-replace_apostrophes @@ -1,14 +1,14 @@ #!/bin/bash # Function to replace contractions -replace_contractions() { +replace_apostrophes() { # Desc: Replace ' with ʼ in contractions # Note: In contractions of UTF-8 text file, replaces U+0027 # APOSTROPHE with U+02BC MODIFIER LETTER APOSTROPHE # Input: stdin # arg1 file path # Output: stdout - # Version: 0.1.1 (BK-2020-03) + # Version: 1.0.0 (BK-2020-03) # Depends: GNU sed 4.8 # Check input @@ -45,13 +45,14 @@ replace_contractions() { -e "s/(won|Won|WON)'(t|T)/\1ʼ\2/g" \ -e "s/(who|Who|WHO)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(who|Who|WHO)'(d|D|ll|LL|re|RE|s|S|ve|VE)/\1ʼ\2/g" \ - -e "s/(where|Where|WHERE)'(s|S)/\1ʼ\2/g" \ + -e "s/(where|Where|WHERE)'(d|D|s|S)/\1ʼ\2/g" \ -e "s/(what|What|WHAT)'(ll|LL|re|RE|s|S|ve|VE)/\1ʼ\2/g" \ -e "s/(weren|Weren|WEREN)'(t|T)/\1ʼ\2/g" \ -e "s/(we|We|WE)'(ven|VEN)'(t|T)/\1ʼ\2ʼ\3/g" \ -e "s/(we|We|WE)'(ren|REN)'(t|T)/\1ʼ\2ʼ\3/g" \ -e "s/(we|We|WE)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(we|We|WE)'(d|D|ll|LL|re|RE|ve|VE)/\1ʼ\2/g" \ + -e "s/(wasn|Wasn|WASN)'(t|T)/\1ʼ\2/g" \ -e "s/(they|They|THEY)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(they|They|THEY)'(d|D|ll|LL|re|RE|ve|VE)/\1ʼ\2/g" \ -e "s/(there|There|THERE)'(ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ @@ -63,8 +64,10 @@ replace_contractions() { -e "s/(she|She|SHE)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(she|She|SHE)'(d|D|ll|LL|s|S)/\1ʼ\2/g" \ -e "s/(shan|Shan|SHAN)'(t|T)/\1ʼ\2/g" \ + -e "s/'(s\b)/ʼ\1/g" \ -e "s/(oughtn|Oughtn|OUGHTN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(oughtn|Oughtn|OUGHTN)'(t|T)/\1ʼ\2/g" \ + -e "s/(o|O)'(clock|CLOCK)/\1ʼ\2/g" \ -e "s/(mustn|Mustn|MUSTN)'(t|T)/\1ʼ\2/g" \ -e "s/(mustn|Mustn|MUSTN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(mustn|Mustn|MUSTN)'(t|T)/\1ʼ\2/g" \ @@ -78,12 +81,14 @@ replace_contractions() { -e "s/(I|i)'(dn|DN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3ʼ\4/g" \ -e "s/(I|i)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(I|i)'(d|D|ll|LL|m|M|ve|VE)/\1ʼ\2/g" \ + -e "s/(how|How|HOW)'(d|D)/\1ʼ\2/g" \ -e "s/(he|He|HE)'(d|D|ll|LL)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(he|He|HE)'(d|D|ll|LL|s|S)/\1ʼ\2/g" \ -e "s/(haven|Haven|HAVEN)'(t|T)/\1ʼ\2/g" \ -e "s/(hasn|Hasn|HASN)'(t|T)/\1ʼ\2/g" \ -e "s/(hadn|Hadn|HADN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(hadn|Hadn|HADN)'(t|T)/\1ʼ\2/g" \ + -e "s/'(em\b)/ʼ\1/g" \ -e "s/(d|D)'(ya|YA|you|YOU)/\1ʼ\2/g" \ -e "s/(don|Don|DON)'(t|T)/\1ʼ\2/g" \ -e "s/(doesn|Doesn|DOESN)'(t|T)/\1ʼ\2/g" \ @@ -91,8 +96,11 @@ replace_contractions() { -e "s/(could|Could|COULD)'(ve|VE)/\1ʼ\2/g" \ -e "s/(couldn|Couldn|COULDN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(couldn|Couldn|COULDN)'(t|T)/\1ʼ\2/g" \ + -e "s/(c|C)'(mere|MERE)/\1ʼ\2/g" \ -e "s/(can|Can|CAN)'(t|T)'(ve|VE)/\1ʼ\2ʼ\3/g" \ -e "s/(can|Can|CAN)'(t|T)/\1ʼ\2/g" \ + -e "s/'(cause|Cause|CAUSE)/ʼ\1/g" \ + -e "s/'(bout|Bout|BOUT)/ʼ\1/g" \ -e "s/(aren|Aren|AREN)'(t|T)/\1ʼ\2/g" \ -e "s/(ate|Ate|ATE)'(nt|NT)/\1ʼ\2/g" \ -e "s/(ain|Ain|AIN)'(t|T)/\1ʼ\2/g" \ -- 2.30.2