Comment

Aurora Press Conference Open Thread

50
Charles Johnson7/20/2012 7:55:55 pm PDT

Testing something…

#!/bin/bash

while getopts ":v" OPTION; do
	case $OPTION in
		v) VERBOSE=1;;
	esac
done

if [ $VERBOSE ]; then
	echo "You are quite verbose."
fi