File: big_result_cmd.in

package info (click to toggle)
paexec 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 904 kB
  • sloc: sh: 3,435; ansic: 1,959; makefile: 174; pascal: 19
file content (15 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!@awk@ -f

BEGIN {
	eot = ENVIRON ["PAEXEC_EOT"]
}

{
	for (i=0; i < 10000; ++i){
		# works fine for empty input too
		print toupper($0)
	}

	print eot         # end of task marker
	fflush()          # end of task MUST BE FLUSHED!!!
}