summaryrefslogtreecommitdiff
path: root/usr.bin/awk
AgeCommit message (Expand)Author
2020-08-28Implement mktime() function for compatibility with mawk and gawk.Todd C. Miller
2020-08-11Update awk to August 7, 2020 version.Todd C. Miller
2020-07-30Don't print extra newlines on error before awk starts parsing.Todd C. Miller
2020-07-30Update awk to July 30, 2020 version.Todd C. Miller
2020-07-30Improved handling of an unescaped '/' in a bracket expression.Todd C. Miller
2020-07-24Regular expression support in RS is an extension.Todd C. Miller
2020-07-20If closefile() is called on std{in,out,err}, freopen() /dev/null instead.Todd C. Miller
2020-07-20In closeall(), skip stdin and flush std{err,out} instead of closing.Todd C. Miller
2020-07-13Cast to uschar when storing a char in an int that will be used as an index.Todd C. Miller
2020-07-02Update awk to July 2, 2020 version.Todd C. Miller
2020-07-01Fix regression with changed SUBSEP in subscript in version 20191024.Todd C. Miller
2020-07-01Fix concatenation regression introduced in version 20201024.Todd C. Miller
2020-06-27Improve description of field splitting and document FS special cases.Todd C. Miller
2020-06-26Document that FS is applied at the time the input line is read.Todd C. Miller
2020-06-26Update awk to June 25, 2020 version.Todd C. Miller
2020-06-26Update awk to June 12, 2020 version.Todd C. Miller
2020-06-23When parsing a character class don't increment openclass for a literal '['.Todd C. Miller
2020-06-17Document that rand() returns non-deterministic random numbers unless aTim van der Molen
2020-06-16Fix strlcpy() size parameter in refldbld(), it was a byte too small.Todd C. Miller
2020-06-13Integrate the bsd-features branch from awk github.Todd C. Miller
2020-06-13POSIX doesn't permit an unescaped '/' in an extended regular expression.Todd C. Miller
2020-06-11Use setlocale(LC_CTYPE, "") instead of setlocale(LC_ALL, "")Todd C. Miller
2020-06-11Fix length parameter to strlcpy, inputFS is a pointer.Todd C. Miller
2020-06-10Update awk to June 5, 2020 version.Todd C. Miller
2020-06-10Update awk to Feb 28, 2020 version.Todd C. Miller
2020-06-10Update awk to Jan 31, 2020 version.Todd C. Miller
2020-06-10Update awk to Jan 5, 2020 version.Todd C. Miller
2020-06-10Update awk to Nov 10, 2019 version.Todd C. Miller
2020-06-10Update awk to Oct 24, 2019 version.Todd C. Miller
2020-06-10Update awk to Oct 17, 2019 version.Todd C. Miller
2020-06-10Update awk to Oct 6, 2019 version.Todd C. Miller
2020-06-10Update awk to Sep 10, 2019 version.Todd C. Miller
2020-06-10Update awk to Jun 17, 2019 version.Todd C. Miller
2020-06-10Update awk to March 5, 2019 version.Todd C. Miller
2020-06-10Update awk to Jan 25, 2019 version.Todd C. Miller
2020-06-10Update awk to Oct 25, 2018 version.Todd C. Miller
2020-06-10Update awk to Aug 27, 2018 version.Todd C. Miller
2020-06-10Update awk to Aug 23, 2018 version.Todd C. Miller
2020-06-10Update awk to Jan 5, 2013 version, no real code changes.Todd C. Miller
2020-06-08The errcheck() function treats an errno of ERANGE or EDOM as somethingPhilip Guenther
2020-02-27Merge a missing fix from awk-12202012 and update the version and FIXES.Todd C. Miller
2020-01-22claudio noticed that "exit" inside the main {} clause still runs the EXITTheo de Raadt
2019-08-13Check for strdup return value and exit on failure.Frederic Cambus
2019-08-13Fix a segmentation fault in awk, from upstream version 20121220.Frederic Cambus
2019-05-26use proper crossreferencesChristian Weisgerber
2018-01-24POSIX requires that awk support \v and \a escapes. I used '\007'Todd C. Miller
2017-12-08Convert snprintf+write into dprintf. It is simply easier to read, andTheo de Raadt
2017-10-09rename dprintf macro to DPRINTF to avoid collision with libc posix dprintf.Theo de Raadt
2017-10-08Move the assignment to cmdname up before its first use.Theo Buehler
2017-09-25Mark FATAL() as __dead so clang doesn't reportKenneth R Westerback