xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/p.36 (revision 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e)
1BEGIN	{ FS = OFS = "\t" }
2	{ $5 = 1000 * $3 / $2 ; print $1, $2, $3, $4, $5 }
3