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