xref: /freebsd/contrib/one-true-awk/bugs-fixed/getline-numeric.awk (revision 2d1d418e1e7bc8325bb052185c17c81a674d0c4e)
1{
2    print $0, ($0 <= 50 ? "<=" : ">"), 50
3    getline dd < ARGV[1]
4    print dd, (dd <= 50 ? "<=" : ">"), 50
5    if (dd == $0) print "same"
6}
7