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

for-loop.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b74df064c5053c5c87d6f3021fdfa394b6037fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
(
	for i in a b c
	do
		echo $i ?!AMP?!
		cat
	done ?!AMP?!
	for i in a b c; do
		echo $i &&
		cat $i
	done
)