shithub: trueawk

ref: d11b2d1a36e92518cea81c717169e2c97e8450d9
dir: /bugs-fixed/getline-numeric.awk/

View raw version
{
    print $0, ($0 <= 50 ? "<=" : ">"), 50
    getline dd < ARGV[1]
    print dd, (dd <= 50 ? "<=" : ">"), 50
    if (dd == $0) print "same"
}