summaryrefslogtreecommitdiff
path: root/usr/src/test/util-tests/tests/awk/bugs-fixed/numeric-rs.awk
blob: cc7a0a0c08c289d52ca6dabc6a1039b19fac3f91 (plain)
1
2
3
4
5
6
BEGIN {
	RS = 1;
	while ("echo a1b1c1d" | getline > 0) {
		print $1;
	}
}