/
niceSOFT
/
gawk
Обзор
Документация
Войти
/
niceSOFT
/
gawk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fldterm.awk
10 строк
183 B
Andrew J. Schorr
Optimization: support unterminated field strings inside gawk, but make terminated copies for the API.
08 июл 2016, 22:26
08 июл 2016, 22:26
c86137f
Код
Авторство
О чём код?
BEGIN { # choose a field separator that is numeric, so we can test whether # force_number properly handles unterminated numeric field strings FS = "3" } { print $1+0 print $1 }