xref: /freebsd/contrib/one-true-awk/bugs-fixed/numeric-rs.awk (revision e64fe029e9d3ce476e77a478318e0c3cd201ff08)
1BEGIN {
2	RS = 1;
3	while ("echo a1b1c1d" | getline > 0) {
4		print $1;
5	}
6}
7