From da72d8ac2d849620332594a5d65c095e4504c076 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Fri, 21 May 2021 17:02:43 +1000 Subject: [PATCH] Remove unneeded backslashes --- scripts/extract_failed_ids.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/extract_failed_ids.sh b/scripts/extract_failed_ids.sh index 033ecac..7108592 100755 --- a/scripts/extract_failed_ids.sh +++ b/scripts/extract_failed_ids.sh @@ -15,7 +15,7 @@ else fi { - grep 'Could not download submission' "$file" | awk '{ print $12 }' | rev | cut -c 2- | rev ; \ - grep 'Failed to download resource' "$file" | awk '{ print $15 }' ; \ - grep 'failed to download submission' "$file" | awk '{ print $14 }' | rev | cut -c 2- | rev ; \ + grep 'Could not download submission' "$file" | awk '{ print $12 }' | rev | cut -c 2- | rev ; + grep 'Failed to download resource' "$file" | awk '{ print $15 }' ; + grep 'failed to download submission' "$file" | awk '{ print $14 }' | rev | cut -c 2- | rev ; } >>"$output"