Codebase list ohcount / 420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main test / detect_files / bourne_again_script
420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main

Tree @420c4794-75b8-4551-a2c5-42f5fb1d3fbf/main (Download .tar.gz)

bourne_again_script @420c4794-75b8-4551-a2c5-42f5fb1d3fbf/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