blob: 149a91c1214326eee0c90024e43f5d628a4b9e07 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: $0 <index>"
exit 1
fi
curl -XGET 'http://stream.elevate.at:9200/'"$1"'/dataupdate/_search?search_type=count&pretty' -d @last-update.json
|