Age | Commit message (Expand) | Author |
2015-03-28 | Fix sed bug David Halls hit trying to compile libiconv. | Rob Landley |
2015-03-28 | Fix printf bug (%.s should be %.0s not %s) reported by Isabella Parakiss. | Rob Landley |
2015-03-27 | tail: add old -123 support and comment out #-f until it's actually implemented. | Rob Landley |
2015-03-21 | Another bug from David Halls: find -exec wasn't consuming its argument when i... | Rob Landley |
2015-03-21 | install -D bugfix from David Halls. | Rob Landley |
2015-03-19 | Add -123 support to head (suggested by Elliott Hughes). | Rob Landley |
2015-03-13 | Clean up sort help text. | Rob Landley |
2015-03-12 | Remove cat -v help text debris. | Rob Landley |
2015-03-12 | The time command depends on floating point support. | Rob Landley |
2015-03-12 | Make find accept numeric uid/gid, and simplify makedevs using the new infrast... | Rob Landley |
2015-03-12 | Make install support numeric uid/gids (reported by Kylie McClain). | Rob Landley |
2015-03-12 | Factor out xgetgrnamid() and xgetpwnamid() into xwrap.c. | Rob Landley |
2015-03-10 | Use xsignal() instead of signal(). | Rob Landley |
2015-03-06 | sed depends on -r to be rightmost flag to simplify the REG_EXTENDED test. | Rob Landley |
2015-03-02 | On 64 bit, subtracting two pointers produces a long result. On 32 bit, it's a... | Rob Landley |
2015-03-01 | Fix several printf_format warnings. | Rob Landley |
2015-03-01 | Patches from Elliott Hughes to fix various printf() format strings. | Rob Landley |
2015-03-01 | Patches from Elliott Hughes to add missing arguments to error_exit() calls. | Rob Landley |
2015-03-01 | remove accidental space in format string | Elliott Hughes |
2015-02-28 | BSD sed uses -E instead of -r to enable ERE. | Isabella Bosia |
2015-02-15 | Add --remove-destination longopt for -F because the host version doesn't have... | Rob Landley |
2015-02-14 | Make egrep and fgrep build standalone. | Rob Landley |
2015-02-08 | Rewrite of a patch from Elliott Hughes to implement touch -h and switch API t... | Rob Landley |
2015-02-07 | Cleanup pass on env, removing exec_optargs(). | Rob Landley |
2015-02-07 | Make toy_exec() check if argc is in optargs and deal with it there so we don'... | Rob Landley |
2015-02-06 | In rm, init using to AT_REMOVEDIR in the dir case earlier. | Rob Landley |
2015-02-06 | Alright, the Android guys agree with the musl guys: faccessat(AT_SYMLINK_NOFO... | Rob Landley |
2015-01-22 | Fix sed s//\[newline]/ line continuations. | Rob Landley |
2015-01-20 | fix typo in printf | Elliott Hughes |
2015-01-18 | Lift the basename/libgen.h shenanigans back out of portability.c and make it ... | Rob Landley |
2015-01-16 | id.c #ifdefectomy. (ifdefs belong in headers, not in C code.) | Rob Landley |
2015-01-16 | This patch adds a TOYBOX_SELINUX configuration option to control both | Elliott Hughes |
2015-01-14 | Make touch -d miliseconds work. (Still only 6 digits precision instead of 9, ... | Rob Landley |
2015-01-14 | i found a few problems while manually smoke testing toybox chown versus toolb... | Elliott Hughes |
2015-01-14 | Let chown build standalone. | Rob Landley |
2015-01-13 | sed bugfix: N or n at end of script would save the terminating NULL as the re... | Rob Landley |
2015-01-13 | sed s/// can have line continuations in the replacement part, with or without... | Rob Landley |
2015-01-11 | Promote printf. | Rob Landley |
2015-01-04 | Fix sed backslash parsing in square bracket pattern sections. | Rob Landley |
2014-12-31 | Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag mac... | Rob Landley |
2014-12-31 | When CP_MORE was disabled, the d flag was still in the [-exclusion] list at t... | Rob Landley |
2014-12-31 | When you include the posix header libgen.h, glibc #defines basename to some r... | Rob Landley |
2014-12-23 | Merge catv back into cat as discussed on the list. Add comments about infrast... | Rob Landley |
2014-12-22 | sed 'r' didn't work right. | Rob Landley |
2014-12-21 | Another sed bug. (The e2fsprogs build uses multiple line continuations on the... | Rob Landley |
2014-12-21 | Promote sed to posix. | Rob Landley |
2014-12-18 | Decouple cp and mv so mv uses its own --help text. | Rob Landley |
2014-12-13 | Leftover variable from factoring out base64_init() caused an unused variable ... | Rob Landley |
2014-12-13 | Add base64. | Rob Landley |
2014-12-01 | Ashwini Sharma pointed out that "mkdir sub; ln -s . sub/up; du -L sub" should... | Rob Landley |