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 was 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:
I've submitted a partial fix on https://github.com/holzschu/ios_system
You'll have to recompile and sideload (obviously), and it's not 100% robust yet, but it crashes less often.
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: