Fix Pascal quoting
[ohcount] / test / detect_files / bourne_again_script
1 #!/bin/bash
2
3 # This is a bash script
4 Usage() {
5         ProgName=`basename "$0"`
6         echo "sample script
7 Usage: $ProgName [-h] ..."
8         exit
9 }
10
11 for arg
12 do
13         case "$arg" in
14         -h|--help|-help)
15                 Usage ;;
16         esac
17 done