fake-firehose/scripts/import-from-json.sh
2023-01-02 14:34:56 +00:00

21 lines
No EOL
373 B
Bash
Executable file

## The file you want to import
file=$1
base=`basename "$file"`
if [[ ! -f "$file" ]]
then
echo "[WARN] File not found, exiting, $file"
exit 2
fi
cat "$file" |grep "data: " | while read -r line
do
if [[ $line == *"uri"* ]]
then
echo $line |sed 's/data://g'| jq .uri| sed 's/\"//g' >> "./$base.uris.txt" &
fi
done
## Exit 0 by default
exit 0