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

while-loop.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06c1567f481e8cbc21cf50fdf58bfb9a502d439e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(
	while true
	do
		echo foo ?!AMP?!
		cat <<-\EOF ?!LOOP?!
		bar
		EOF
	done ?!AMP?!

	while true; do
		echo foo &&
		cat bar ?!LOOP?!
	done
)