]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/one-true-awk/bugs-fixed/getline-numeric.awk
MFV r348535: 9677 panic from zio_write_gang_block() when creating dump device on...
[FreeBSD/FreeBSD.git] / contrib / one-true-awk / bugs-fixed / getline-numeric.awk
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 }