Skip to content

Commit 467f88b

Browse files
fixing quotes not encoded properly and renaming file
1 parent 5e26502 commit 467f88b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vul-dra.sh vul-dra

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ scraping_block(){
4747
display(){
4848
printf "%-50s%s\n" "LATIN VULGATE" "DOUAY RHEIMS"
4949
printf "%-50s%s\n" "-------------" "---------------------------"
50-
VULGATE_DISPLAY=$(printf "%s" "$VULGATE" | fmt -w 50)
51-
DRA_DISPLAY=$(printf "%s" "$DRA" | fmt -w 50)
50+
VULGATE_DISPLAY=$(printf "%s" "$VULGATE" | sed "s/'/'/g" | fmt -w 50)
51+
DRA_DISPLAY=$(printf "%s" "$DRA" | sed "s/'/'/g" | fmt -w 50)
5252

5353
mkfifo vulgate_pipe dra_pipe
5454
printf '%s\n' "$VULGATE_DISPLAY" > vulgate_pipe &

0 commit comments

Comments
 (0)