]> git.treefish.org Git - bitvalue.git/blobdiff - bitvalue
Added possible timespans to usage help
[bitvalue.git] / bitvalue
index 831145d3db5d868c0efa37ede7fb80655fa22ad3..4445017576083b5523a921f35d84c4b9bbe9bdd7 100755 (executable)
--- a/bitvalue
+++ b/bitvalue
@@ -1,15 +1,16 @@
 #!/bin/bash
 
 CONFIG=~/.bitvaluerc
 #!/bin/bash
 
 CONFIG=~/.bitvaluerc
+HOST=data.bitcoinity.org
 
 
-USAGE="Usage: $(basename "$0") [-h] [-t val]
+TIMESPAN="24h"
+
+USAGE="Usage: $(basename "$0") [-h] [-t 10m|1h|24h|3d|7d|30d|6m|2y|5y|all]
 Simple bash script to visualize the value of your bitcoin investment.
 
 Arguments:
   -h  show this help text
 Simple bash script to visualize the value of your bitcoin investment.
 
 Arguments:
   -h  show this help text
-  -t  set the timespan (default: 30d)"
-
-TIMESPAN="30d"
+  -t  used timespan (default: $TIMESPAN)"
 
 while getopts ':ht:' option; do
     case "$option" in
 
 while getopts ':ht:' option; do
     case "$option" in
@@ -42,12 +43,24 @@ fi
 
 source $CONFIG
 
 
 source $CONFIG
 
-cat << EOF | gnuplot
+if ! ping -c 1 $HOST >/dev/null 2>&1; then
+    echo "Host $HOST is unreachable!"
+    exit 1
+fi
+
+cat << EOF | gnuplot 2>/dev/null
 set terminal dumb
 set datafile separator ","
 set xdata time
 set timefmt "%Y-%m-%d %H:%M:%S UTC"
 set title "EXCHANGE: $EXCHANGE | TIMESPAN: $TIMESPAN\nZERO RATE: $ZERO_RATE $CURRENCY | ZERO VALUE: $ZERO_VALUE $CURRENCY"
 set terminal dumb
 set datafile separator ","
 set xdata time
 set timefmt "%Y-%m-%d %H:%M:%S UTC"
 set title "EXCHANGE: $EXCHANGE | TIMESPAN: $TIMESPAN\nZERO RATE: $ZERO_RATE $CURRENCY | ZERO VALUE: $ZERO_VALUE $CURRENCY"
-plot "< wget -q -O - \"https://data.bitcoinity.org/export_data.csv?currency=$CURRENCY&data_type=price&exchange=$EXCHANGE&t=l&timespan=$TIMESPAN\"" \
+plot "< wget -q -O - \"https://$HOST/export_data.csv?currency=$CURRENCY&data_type=price&exchange=$EXCHANGE&t=l&timespan=$TIMESPAN\"" \
      using 1:(\$3/$ZERO_RATE*$ZERO_VALUE) with lines title ""
 EOF
      using 1:(\$3/$ZERO_RATE*$ZERO_VALUE) with lines title ""
 EOF
+
+if [ $? -ne 0 ]; then
+    echo "Error while preparing data!" >&2
+    exit 1
+fi
+
+exit 0