aboutsummaryrefslogtreecommitdiff
path: root/toys/posix
AgeCommit message (Expand)Author
2015-03-02On 64 bit, subtracting two pointers produces a long result. On 32 bit, it's a...Rob Landley
2015-03-01Fix several printf_format warnings.Rob Landley
2015-03-01Patches from Elliott Hughes to fix various printf() format strings.Rob Landley
2015-03-01Patches from Elliott Hughes to add missing arguments to error_exit() calls.Rob Landley
2015-03-01remove accidental space in format stringElliott Hughes
2015-02-28BSD sed uses -E instead of -r to enable ERE.Isabella Bosia
2015-02-15Add --remove-destination longopt for -F because the host version doesn't have...Rob Landley
2015-02-14Make egrep and fgrep build standalone.Rob Landley
2015-02-08Rewrite of a patch from Elliott Hughes to implement touch -h and switch API t...Rob Landley
2015-02-07Cleanup pass on env, removing exec_optargs().Rob Landley
2015-02-07Make toy_exec() check if argc is in optargs and deal with it there so we don'...Rob Landley
2015-02-06In rm, init using to AT_REMOVEDIR in the dir case earlier.Rob Landley
2015-02-06Alright, the Android guys agree with the musl guys: faccessat(AT_SYMLINK_NOFO...Rob Landley
2015-01-22Fix sed s//\[newline]/ line continuations.Rob Landley
2015-01-20fix typo in printfElliott Hughes
2015-01-18Lift the basename/libgen.h shenanigans back out of portability.c and make it ...Rob Landley
2015-01-16id.c #ifdefectomy. (ifdefs belong in headers, not in C code.)Rob Landley
2015-01-16This patch adds a TOYBOX_SELINUX configuration option to control bothElliott Hughes
2015-01-14Make touch -d miliseconds work. (Still only 6 digits precision instead of 9, ...Rob Landley
2015-01-14i found a few problems while manually smoke testing toybox chown versus toolb...Elliott Hughes
2015-01-14Let chown build standalone.Rob Landley
2015-01-13sed bugfix: N or n at end of script would save the terminating NULL as the re...Rob Landley
2015-01-13sed s/// can have line continuations in the replacement part, with or without...Rob Landley
2015-01-11Promote printf.Rob Landley
2015-01-04Fix sed backslash parsing in square bracket pattern sections.Rob Landley
2014-12-31Redo option parsing infrastructure so #define FORCE_FLAGS can unzero flag mac...Rob Landley
2014-12-31When CP_MORE was disabled, the d flag was still in the [-exclusion] list at t...Rob Landley
2014-12-31When you include the posix header libgen.h, glibc #defines basename to some r...Rob Landley
2014-12-23Merge catv back into cat as discussed on the list. Add comments about infrast...Rob Landley
2014-12-22sed 'r' didn't work right.Rob Landley
2014-12-21Another sed bug. (The e2fsprogs build uses multiple line continuations on the...Rob Landley
2014-12-21Promote sed to posix.Rob Landley
2014-12-18Decouple cp and mv so mv uses its own --help text.Rob Landley
2014-12-13Leftover variable from factoring out base64_init() caused an unused variable ...Rob Landley
2014-12-13Add base64.Rob Landley
2014-12-01Ashwini Sharma pointed out that "mkdir sub; ln -s . sub/up; du -L sub" should...Rob Landley
2014-11-25Variant of a patch from Ashwini Sharma, making df /dev/node work and tweaking...Rob Landley
2014-11-22As long as Android's going to require fortify, fixup the warnings it generates.Rob Landley
2014-11-19probe for getspnam(), forkpty(), utmpx, replace sethostname()Isaac Dunham
2014-11-19Fix "tail -c 10" segfault spotted by Lukasz Szpakowski.Rob Landley
2014-10-30Test for ls -d from Isaac Dunham, and he pointed out -F also disables symlink...Rob Landley
2014-10-30Bug report from Isaac Dunham: ls -d shouldn't follow command line symlinks wi...Rob Landley
2014-10-27Fix use after free error spotted by ?ukasz Szpakowski.Rob Landley
2014-10-22Teach ln -f to leave original target alone if link creation fails.Rob Landley
2014-10-20More static analysis fixes from Ashwini Sharma.Rob Landley
2014-10-18Factor out printf-style escape parsing logic from echo.c.Rob Landley
2014-10-14Use O_CLOEXEC instead of O_RDONLY to signal loopfiles_rw() to close filehandles.Rob Landley
2014-10-14Fix last night's mv commit (use dest, not source).Rob Landley
2014-10-14Implement mv -f and -i.Rob Landley
2014-10-09Various bugfixes (mostly resource leaks) from Ashwini Sharma's static analysi...Rob Landley