rosskukulinski / kubernetes-rethinkdb-cluster

RethinkDB cluster on top of Kubernetes made easy.
MIT License
139 stars 40 forks source link

Use -x mode in scripts to reduce duplication #14

Closed paralin closed 8 years ago

paralin commented 8 years ago

Currently you do something like this:

echo "mycommand myargs"
mycommand myargs

You could just do:

# At the beginning of the file
set -x

mycommand myargs

Does roughly the same thing, tells bash to print out the commands as they are executed.

paralin commented 8 years ago

Done in #18

rosskukulinski commented 8 years ago

Merged