1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Raynor 8616545d0c Initital commit, need to merge 2023-01-02 14:34:56 +00:00
1 changed files with 21 additions and 0 deletions

21
scripts/import-from-json.sh Executable file
View File

@ -0,0 +1,21 @@
## 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