/
githubmirror
/
gawk
Обзор
Документация
Войти
/
githubmirror
/
gawk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/strftlng.awk
11 строк
311 B
Arnold D. Robbins
Move to gawk-3.0.3.
16 июл 2010, 13:49
16 июл 2010, 13:49
6607eb3
Код
Авторство
О чём код?
# test file from Paul Eggert, eggert@twinsun.com # modified for portability (%c doesn't cut it) BEGIN { BUFSIZ = 1024 simpleformat = format = "%m/%d/%y %H:%M:%S\n" clen = length(strftime(format, 0)) for (i = 1; i < BUFSIZ / clen + 1; i++) format = format simpleformat printf "%s", strftime(format, 0) }