Raw File
(
	case "$x" in
	# found foo
	x) foo ;;
	# found other
	*)
		# treat it as bar
		bar
		;;
	esac
)
back to top