From e59e2b3472c514abe5e37147c0e0cd0a6372df70 Mon Sep 17 00:00:00 2001 From: Matthew Kousoulas Date: Mon, 21 Jun 2021 09:21:16 -0400 Subject: [PATCH] Switch to GAWK --- CSVtoJSON.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSVtoJSON.sh b/CSVtoJSON.sh index 99d7a4e..4b98645 100755 --- a/CSVtoJSON.sh +++ b/CSVtoJSON.sh @@ -1,2 +1,2 @@ #!/bin/sh -awk -f CSVtoJSON.awk pictures.csv | sed -E 's/,(]|})/\1/g' > pictures.json +gawk -f CSVtoJSON.awk pictures.csv | sed -E 's/,(]|})/\1/g' > pictures.json -- 2.45.3