ags-upload

Insert AGS files to a database
git clone git://src.adamsgaard.dk/ags-upload # fast
git clone https://src.adamsgaard.dk/ags-upload.git # slow
Log | Files | Refs Back to index

post.sh (121B)


      1 #!/bin/sh
      2 for f in ../input/*.ags ../input/*.AGS
      3 do
      4 	curl -s -X POST http://localhost:8080/ingest/ags -F "file=@$f"
      5 done