Age | Commit message (Expand) | Author |
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 |
2014-11-25 | Variant of a patch from Ashwini Sharma, making df /dev/node work and tweaking... | Rob Landley |
2014-11-22 | As long as Android's going to require fortify, fixup the warnings it generates. | Rob Landley |
2014-11-19 | probe for getspnam(), forkpty(), utmpx, replace sethostname() | Isaac Dunham |
2014-11-19 | Fix "tail -c 10" segfault spotted by Lukasz Szpakowski. | Rob Landley |
2014-10-30 | Test for ls -d from Isaac Dunham, and he pointed out -F also disables symlink... | Rob Landley |
2014-10-30 | Bug report from Isaac Dunham: ls -d shouldn't follow command line symlinks wi... | Rob Landley |
2014-10-27 | Fix use after free error spotted by ?ukasz Szpakowski. | Rob Landley |
2014-10-22 | Teach ln -f to leave original target alone if link creation fails. | Rob Landley |
2014-10-20 | More static analysis fixes from Ashwini Sharma. | Rob Landley |
2014-10-18 | Factor out printf-style escape parsing logic from echo.c. | Rob Landley |
2014-10-14 | Use O_CLOEXEC instead of O_RDONLY to signal loopfiles_rw() to close filehandles. | Rob Landley |
2014-10-14 | Fix last night's mv commit (use dest, not source). | Rob Landley |
2014-10-14 | Implement mv -f and -i. | Rob Landley |
2014-10-09 | Various bugfixes (mostly resource leaks) from Ashwini Sharma's static analysi... | Rob Landley |
2014-10-09 | Fix use-after-free spotted by Ashwini Sharma's static analysis. | Rob Landley |
2014-10-01 | Bugfix from Ashwini Sharma: Z timezone required by posix for touch but not fo... | Rob Landley |
2014-09-27 | Untangle id/groups/logname so single.sh can build each one standalone. | Rob Landley |
2014-09-18 | Reorder functions to get rid of unnecessary prototypes, and move a global int... | Rob Landley |
2014-09-18 | rm -rf needs to chmod directories to u+rwx, because directories need +x to se... | Isaac Dunham |
2014-09-17 | Minor cleanup pass on touch. | Rob Landley |
2014-09-17 | Cleanup pass on cut, more to do. | Rob Landley |
2014-09-14 | Add cpio -p | Rob Landley |
2014-09-14 | find -xdev should return mount points, just not contents. | Rob Landley |
2014-09-14 | Split xpopen() into xpopen_both(), xpopen(), and xrun() depending on whether ... | Rob Landley |
2014-09-13 | Bug report from luckboy: rm -f on a broken symlink didn't work because our "d... | Rob Landley |
2014-09-09 | Ignore -m option to cpio, it's what we do anyway so it's not an error. | Rob Landley |
2014-09-08 | Fix more memory leaks reported by Ashwini Sharma. | Rob Landley |
2014-09-08 | Add error test and fix memory leak, reported by Ashwini Sharma. | Rob Landley |
2014-09-01 | Add cp -F to force delete of existing destination files, and make install com... | Rob Landley |
2014-08-16 | Add install to cp/mv. | Rob Landley |
2014-08-12 | Patches to commands for issues reported from static analysis tool. | Ashwini Sharma |
2014-08-07 | Fix -mindepth and -maxdepth to not drill down into excluded directories. | Rob Landley |
2014-08-05 | More find bugfixes. | Rob Landley |
2014-08-05 | Rereading posix find.c page: "Specifying more than one of the mutually-exclus... | Rob Landley |
2014-08-05 | find.c: Posix wants loop detection. | Rob Landley |
2014-08-05 | Building busybox from source needs find -not (a synonym for posix's "!"). | Rob Landley |
2014-08-05 | Fix a couple patch bugs concerning error output. | Rob Landley |
2014-08-04 | find.c: add -mindepth, -maxdepth, and document -newer and -depth. | Rob Landley |
2014-08-03 | Implement exec -user, -group, and -newer. Enable find in defconfig. | Rob Landley |