diff --git a/scripts/extract_successful_ids.sh b/scripts/extract_successful_ids.sh index 3b6f7bc..6c7930d 100755 --- a/scripts/extract_successful_ids.sh +++ b/scripts/extract_successful_ids.sh @@ -14,4 +14,9 @@ else output="successful.txt" fi -grep 'Downloaded submission' "$file" | awk '{ print $(NF-2) }' >> "$output" +{ + grep 'Downloaded submission' "$file" | awk '{ print $(NF-2) }' ; + grep 'Resource hash' "$file" | awk '{ print $(NF-2) }' ; + grep 'Download filter' "$file" | awk '{ print $(NF-3) }' ; + grep 'already exists, continuing' "$file" | awk '{ print $(NF-3) }' ; +} >> "$output"