blob: 26fe01fbacbcd99e4f94bf1f8b580c1a3c1b883e (
plain)
1
2
3
4
5
6
7
8
9
10
|
BEGIN {
# choose a field separator that is numeric, so we can test whether
# force_number properly handles unterminated numeric field strings
FS = "3"
}
{
print $1+0
print $1
}
|