1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| #!/bin/bash
###
### Some shell version or description here.
###
### Usage:
### test <input> <output>
###
### Options:
### <input> Input file to read.
### <output> Output file to write. Use '-' for stdout.
### -h | --help Show this message.
help() {
sed -rn 's/^### ?//;T;p' "$0"
}
# 如果用户输入“-h”或者无参数,执行help函数
if [[ $# == 0 ]] || [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]]; then
help
exit 1
fi
|