You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fredrik Erlandsson edited this page Oct 4, 2016
·
3 revisions
#!/bin/bash
mkdir -p uploaded
for F in *.json; do
echo $F; curl -o status -H 'Content-Type: application/json' -T $F http://crawl.sincere.se/c.php?action=push
grep "Pushed to db." status && mv -i $F uploaded/
rm status
done