Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / detect_files / bourne_again_script
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

bourne_again_script @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/mainraw · history · blame

#!/bin/bash

# This is a bash script
Usage() {
	ProgName=`basename "$0"`
	echo "sample script
Usage: $ProgName [-h] ..."
	exit
}

for arg
do
	case "$arg" in
	-h|--help|-help)
		Usage ;;
	esac
done