File: render.awk

package info (click to toggle)
oakleaf 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,536 kB
  • sloc: sh: 3,972; f90: 337; makefile: 174; awk: 11
file content (11 lines) | stat: -rw-r--r-- 144 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
{
    if(/<!-- #include .* -->/) {
	split($0,A,"\"");
	while( (getline line < A[2]) > 0) {
	    print line;
	}
    }
    else {
	print;
    }
}