From a5160589ac68cba0e744c3ec25a97e1adab3d274 Mon Sep 17 00:00:00 2001 From: Nemo Date: Sat, 30 Apr 2022 15:50:59 +0530 Subject: [PATCH] Sort properly after download is complete --- fetch.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/fetch.sh b/fetch.sh index 62505de..19174d0 100755 --- a/fetch.sh +++ b/fetch.sh @@ -52,8 +52,11 @@ for i in E F 9; do rm "IN$i.csv" fetch_class "IN$i" $total echo "::endgroup::" - # Sort the file in place - sort -o "IN$i.csv" "IN$i.csv" done -sem --wait \ No newline at end of file +sem --wait + +for i in E F 9; do + # Sort the file in place + sort -o "IN$i.csv" "IN$i.csv" +done \ No newline at end of file