1
0

chore: add ch 5-6

This commit is contained in:
xuu
2025-03-15 21:11:29 -06:00
parent ff069b52c4
commit cbb5561fc6
7 changed files with 3861 additions and 51 deletions

13
cleanfile Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
SED=$(
while IFS=$'\t' read -r -a myArray
do
echo -ne "s_"${myArray[0]}"_"${myArray[1]}"_g;\n"
done < replacements
)
echo sed -e "$SED"
cat $1 | sed -e "$SED" | sed -z 's_-\n__g'> $2