aboutsummaryrefslogtreecommitdiff
path: root/toys/posix
AgeCommit message (Expand)Author
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
2014-10-09Fix use-after-free spotted by Ashwini Sharma's static analysis.Rob Landley
2014-10-01Bugfix from Ashwini Sharma: Z timezone required by posix for touch but not fo...Rob Landley
2014-09-27Untangle id/groups/logname so single.sh can build each one standalone.Rob Landley
2014-09-18Reorder functions to get rid of unnecessary prototypes, and move a global int...Rob Landley
2014-09-18rm -rf needs to chmod directories to u+rwx, because directories need +x to se...Isaac Dunham
2014-09-17Minor cleanup pass on touch.Rob Landley
2014-09-17Cleanup pass on cut, more to do.Rob Landley
2014-09-14Add cpio -pRob Landley
2014-09-14find -xdev should return mount points, just not contents.Rob Landley
2014-09-14Split xpopen() into xpopen_both(), xpopen(), and xrun() depending on whether ...Rob Landley
2014-09-13Bug report from luckboy: rm -f on a broken symlink didn't work because our "d...Rob Landley
2014-09-09Ignore -m option to cpio, it's what we do anyway so it's not an error.Rob Landley
2014-09-08Fix more memory leaks reported by Ashwini Sharma.Rob Landley
2014-09-08Add error test and fix memory leak, reported by Ashwini Sharma.Rob Landley
2014-09-01Add cp -F to force delete of existing destination files, and make install com...Rob Landley
2014-08-16Add install to cp/mv.Rob Landley
2014-08-12Patches to commands for issues reported from static analysis tool.Ashwini Sharma