File: demo_ftrans

package info (click to toggle)
runawk 1.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 712 kB
  • sloc: awk: 1,127; ansic: 736; sh: 420; makefile: 103
file content (17 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env runawk

# This is a demo for min.awk and max.awk

#use "ftrans_in.awk"

function beginfile (fn){
	print "#### beginning of " fn " ####"
}

function endfile (fn){
	print "#### end of " fn " ####"
}

{
	print
}