Welcome to mirror list, hosted at ThFree Co, Russian Federation.

case-comment.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 641c157b98c0af678b15fb2cc25645eac8650602 (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	case "$x" in
	# found foo
	x) foo ;;
	# found other
	*)
		# treat it as bar
		bar
		;;
	esac
)