CONFIG=~/.bitvaluerc
+USAGE="Usage: $(basename "$0") [-h] [-t val]
+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"
+
+while getopts ':ht:' option; do
+ case "$option" in
+ h) echo "$USAGE"
+ exit
+ ;;
+ t) TIMESPAN=$OPTARG
+ ;;
+ :) printf "missing argument for -%s\n" "$OPTARG" >&2
+ echo "$usage" >&2
+ exit 1
+ ;;
+ \?) printf "illegal option: -%s\n" "$OPTARG" >&2
+ echo "$usage" >&2
+ exit 1
+ ;;
+ esac
+done
+shift $((OPTIND - 1))
+
if [ ! -f $CONFIG ]; then
cat << EOF > $CONFIG
EXCHANGE="bitstamp"
source $CONFIG
-if [ ! -z "$1" ]; then
- TIMESPAN="$1"
-else
- TIMESPAN="30d"
-fi
-
cat << EOF | gnuplot
set terminal dumb
set datafile separator ","