You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
simple test case
$ awk -- '{print NR;}'
foo
bar
^C
1
2
$ awk -- '{print NF;}'
foo
bar
^C
==FATAL
On looking at this again, it actually prints out NF before dying.
$ awk -- '{print NF;} END {print "bye";}'
foo bar
^C
2
bye
==FATAL
The text was updated successfully, but these errors were encountered:
simple test case
$ awk -- '{print NR;}'
foo
bar
^C
1
2
$ awk -- '{print NF;}'
foo
bar
^C
==FATAL
On looking at this again, it actually prints out NF before dying.
$ awk -- '{print NF;} END {print "bye";}'
foo bar
^C
2
bye
==FATAL
The text was updated successfully, but these errors were encountered: