11 lines
276 B
Bash
11 lines
276 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
touch filtered_arts.txt
|
||
|
while IFS= read -r line
|
||
|
do
|
||
|
header=$(curl -o save -w "%{header_json}" "$line" 2> /dev/null)
|
||
|
echo $header | jq -e '.location[]' >/dev/null
|
||
|
if [ "$?" = "0" ]; then
|
||
|
echo "$line" >> filtered_arts.txt
|
||
|
fi
|
||
|
done < $1
|