mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
14 lines
123 B
Text
14 lines
123 B
Text
|
|
#$FreeBSD$
|
||
|
|
f()
|
||
|
|
{
|
||
|
|
false
|
||
|
|
case $1 in
|
||
|
|
foo) true ;;
|
||
|
|
bar) false ;;
|
||
|
|
esac
|
||
|
|
}
|
||
|
|
|
||
|
|
f foo || exit 1
|
||
|
|
f bar && exit 1
|
||
|
|
f quux || exit 1
|