blob: f0f1da0eaf37c203eb5193811e56591a44e95df4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/sh
##############################################################################
###
### generate-cassandra-drop-cql.sh
###
### A script that generates the CQL commands of DROP for the Cassnadra init.
###
### Usage:
###
### ./generate-cassandra-init-cql.sh cassandra-commands.json
###
###
### Author: Avi Ziv
### Version 1.0
### Date: 21 Sep 2016
###
##############################################################################
#GLOBALS
RUN_PATH=$(cd "$(dirname "$0")" && pwd)
#### Functions - Start ####
usage() { echo "Usage: $0 <db-cql-json-file>, for example: $0 cassandra-commands.json" 1>&2; exit 1; }
main()
{
echo "USE dox;"
$RUN_PATH/parse-json.py -t drop -f $1
}
#### Functions - End ####
# Check arguements
if [ "$#" -lt 1 ] || [ "$#" -gt 1 ]; then
usage
fi
main $1
|