URI:
       tpost.sh - ags-upload - Insert AGS files to a database
  HTML git clone git://src.adamsgaard.dk/ags-upload
   DIR Log
   DIR Files
   DIR Refs
       ---
       tpost.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