summaryrefslogtreecommitdiff
path: root/util/isflag
blob: 214a98913d81941ba563e5903c7ecbf51af5e60f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# Pass a flag name, and "$@", and this will check if the flag was passed.
# Example: isflag '-p' "$@"
# will check if the -p flag was passed to the program.

term="$1"
shift
for arg; do
	if [ "$arg" = "$term" ] ; then 
		return 0
	fi
done
return 1