source: gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes/DELETE-OPENANNOTATION-LIST.sh@ 37120

Last change on this file since 37120 was 37081, checked in by davidb, 16 months ago

Now operational

  • Property svn:executable set to *
File size: 350 bytes
Line 
1#!/bin/bash
2
3iuri_id=$1
4
5internal_url_base="http://localhost:4343/simpleAnnotationStore/annotation"
6post_url="${internal_url_base}/destroy"
7
8echo ""
9#echo curl -X DELETE -d "uri=${iuri_id}" "$post_url"
10#curl -X DELETE -d "uri=${iuri_id}" "$post_url"
11
12echo curl -X DELETE "$post_url?uri=${iuri_id}"
13curl -X DELETE "$post_url?uri=${iuri_id}"
14
15
16echo ""
Note: See TracBrowser for help on using the repository browser.