- fec3fd1 Move DIRTREE_COMEAGAIN second callback up to when the filehandle is still open, and add dir->again variable to distinguish second call instead of checking for -1 filehandle. by Rob Landley · 10 years ago
- 31db579 Don't go into an endless loop if we hit a bad utf8 sequence without -q. by Rob Landley · 10 years ago
- 8fb7799 Add utf8 support to ls -C. by Rob Landley · 10 years ago
- a873444 Find bugfixes. by Rob Landley · 10 years ago
- fc7bc38 Write a new find. Not quite done, but the basics work. by Rob Landley · 10 years ago
- fbe5dda Implement -HL for cp. by Rob Landley · 10 years ago
- ffa7e3b Promote killall5 by merging it into kill. by Rob Landley · 10 years ago
- feb696a date -r wasn't saving the result in the right variable. (And make date -ur work.) by Rob Landley · 10 years ago
- 5ce682e Fix rm -rf of chmod 000 directories. by Rob Landley · 10 years ago
- 7a9f7d1 Use dlist_terminate() in patch. by Rob Landley · 10 years ago
- f1a3098 Add : as an alias for true (toysh needs this). by Rob Landley · 10 years ago
- 0cf6a2d Option parsing for nohup needs to stop at first nonoption argument. Minor cleanups. by Rob Landley · 10 years ago
- ff2bc85 Promote strings. by Rob Landley · 10 years ago
- 89a62bf When locale is enabled, sprintf("%.123s", str) is counting characters, not bytes, so we can't globally enable locale without opening stack/heap smashing vulnerabilities. Make commands individually request setlocale() using TOYFLAGS instead. by Rob Landley · 10 years ago
- 314f19e Help text should have a blank line after usage: lines, and a couple other whitespace tweaks. by Rob Landley · 10 years ago
- 670626a cpio: archive more files by Isaac Dunham · 10 years ago
- d8872c4 Introduce xfork() and make commands use it, and make some WEXITSTATUS() use WIFEXITED() and WTERMSIG()+127. by Rob Landley · 10 years ago
- dc64025 Switch mtab_list to doubly linked so we can traverse in either order. Convert umount and df. Add dlist_terminate() to break lists for traversal in either direction. by Rob Landley · 10 years ago
- 80a438d logname and whoami are the same as id -un, so merge them. by Isaac Dunham · 10 years ago
- 7dfee8e Remove debug detritus I didn't mean to to check in, and treat an "this variable can never actually be used uninitialized but gcc's warning generator can't tell and fails spamwards" warning. by Rob Landley · 11 years ago
- 0369ba5 date: add -ds, document +FORMAT escapes. by Rob Landley · 11 years ago
- 48c172b Switch human_readable() to just outputing decimal kilo/mega/gigabytes, make du use it, move it from lib/pending.c to lib.c. by Rob Landley · 11 years ago
- c54fdc9 Teach cpio to set uid/gid and timestamp. (Timestamp has year 2100 problem.) by Rob Landley · 11 years ago
- 5f6ec72 Fix od bug reported by Samuel Holland ("od -v -b" was appending default output type even though an output type was specified). by Rob Landley · 11 years ago
- 6c64f5f Revert lots of half-finished local debris I didn't mean to check in with Isaac's roadmap update. by Rob Landley · 11 years ago
- 931425c roadmap: describe glibc commands. by Isaac Dunham · 11 years ago
- 669f332 Fix date setting, and fluff out help text a bit. by Rob Landley · 11 years ago
- 5b40582 Group headers by standard (POSIX or LSB) or function (internationalization, networking). Move headers standards ignore (but which have been there >15 years) to lib/portability.h. Fold xregcomp into lib since it's posix. by Rob Landley · 11 years ago
- e9a41fc Fix cpio -it: don't close(fd) unless we opened it. by Isaac Dunham · 11 years ago
- 392e127 More cpio bugfixes from Isaac Dunham. by Rob Landley · 11 years ago
- a2d5581 Promote cpio out of pending. by Rob Landley · 11 years ago
- 817d97b Clarify an unclear comment pointed out by Steve Long. by Rob Landley · 11 years ago
- ca1b60e Move mkpathat to lib, remove redundant function used by patch. by Rob Landley · 11 years ago
- fad38c7 Factor out mkpathat. by Rob Landley · 11 years ago
- 2992a66 Add -H option to cksum (hex output), fix to use FLAG macros. by Rob Landley · 11 years ago
- 5486075 Tweak help text. by Rob Landley · 11 years ago
- 0432050 More elaborate help text collating logic. by Rob Landley · 11 years ago
- 59d85e2 Rename xmsprintf() to just xmprintf(). by Rob Landley · 11 years ago
- d3657e9 Add -zZ support to grep (NUL delimited input/output). by Rob Landley · 11 years ago
- dc37317 Pass through all the readfile() arguments from xreadfile(). by Rob Landley · 11 years ago
- c4a8ce4 ln -v support from Ashwini Sharma (comment tweak from me) by Rob Landley · 11 years ago
- ed9eac3 Ashwini Sharma added -v, I tweaked it a bit and added a couple test suite entries. by Rob Landley · 11 years ago
- 0eb0a81 Can't test <0 on an unsigned, reported by Nathan McSween. by Rob Landley · 11 years ago
- b0d4872 Redo od whitespace with multiple output types so the columns align. by Rob Landley · 11 years ago
- 639334b Fix cut. by Rob Landley · 11 years ago
- 5ec4ab3 Add xgetpwnam() to lib/xwrap.c. by Rob Landley · 11 years ago
- 9e44a58 Move xgetpwuid() and xgetgrgid() into xwrap.c by Rob Landley · 11 years ago
- 3ad73e1 grep doesn't allocate enough space by William Haddon · 11 years ago
- 07c4c66 Patch from William Haddon to make xargs with blank input call its command line once. (Tweaked slightly for whitespace and to collate variable declarations.) by Rob Landley · 11 years ago
- 6f6ccc1 Make the patch -x option (only enabled with CONFIG_DEBUG) provide more information about why a patch didn't apply. (Offset of first nonmatching character at each line during seek phase.) by Rob Landley · 11 years ago
- 2baa73f Promote nl from pending to posix, and add tests. by Rob Landley · 11 years ago
- c705b95 Tweak args (yank old + that never worked, rename | to +), and add uname -o as a synonym for -s. by Rob Landley · 11 years ago
- bc382be Fix -t c0 and -J as reported by heehooman at gmail on the list. by Rob Landley · 11 years ago
- 9b9a1ef First pass of cut cleanup, and make test script slightly happier with the concept of 80 character lines. by Rob Landley · 11 years ago
- 64aae2b Minor cleanups. by Rob Landley · 11 years ago
- f93d486 Don't write a zero past end of toybuf with large -d value. by Rob Landley · 11 years ago
- 94fdf49 Minor cosmetic tweaks to expand. by Rob Landley · 11 years ago
- bb215e4 Adjust patch to use dlist_pop() by Rob Landley · 11 years ago
- 5f57bcc Redo tail closer to the original design. Add more tests for large data sets. (Still no -f support yet.) by Rob Landley · 11 years ago
- b6dd79b Missing typecast in recent rm fix. Oops. by Rob Landley · 11 years ago
- afe3fbd uname: Fix help string by Elie De Brauwer · 11 years ago
- ba84528 env - there were 2 segfaults when run on my Ubuntu 12.04 machine: by Jacek Bukarewicz · 11 years ago
- 314dc68 Make chdir handle permissions according to posix, reported by Jacek Bukarewicz.. by Rob Landley · 11 years ago
- 8294973 fix rm to handle "mkdir sub/sub && chmod 007 sub/sub && rm -rf sub". by Rob Landley · 11 years ago
- 01f828d Switch ls from utoa to sprintf. by Rob Landley · 11 years ago
- 408d4f2 Implement ls --color=auto, suggested by Rich Felker. by Rob Landley · 11 years ago
- 4b9c203 tail: Some fixes by Felix Janda · 11 years ago
- 42adb7a Allow getmountlist to read fstab too. by Rob Landley · 11 years ago
- e6e685c Fix bug where exit code was only correct for -q. by Rob Landley · 11 years ago
- 205b496 Move grep from pending to posix, switch default to y. by Rob Landley · 11 years ago
- 9fbd5ef Use OPTSTR_command macro for more oldtoys, to avoid keeping two option strings in sync. (todo: figure out how to make OLDTOY() automatically use macro. Still need the raw version for subset ala cp/mv though.) by Rob Landley · 11 years ago
- 2fed34c Fix wrong printf type. by Rob Landley · 11 years ago
- 1afe7fa Fix usage: lines for a couple commands. by Rob Landley · 11 years ago
- 880d4a9 Cleanup du. by Rob Landley · 11 years ago
- 9b504b4 Normalize df menu entry and tweak help text. by Rob Landley · 11 years ago
- b56e7d5 Need to specify bool for CP_MV_MORE config symbol to avoid warnings. by Rob Landley · 11 years ago
- b2bc382 ls --color should depend on LS in menuconfig. by Rob Landley · 11 years ago
- 9c8047a Move renice from pending to posix, default y, fix link to standard. by Rob Landley · 11 years ago
- a817a02 Replace users of xexec(toys.optargs) with xexec_optargs(0) to avoid free/reuse bug during argument parsing. by Rob Landley · 11 years ago
- 7275667 Add timeout, factoring out common code from sleep. by Rob Landley · 11 years ago
- c810f9f This inlines CRC64, and nothing more. by Isaac Dunham · 11 years ago
- 8e9ec86 here's a version of paste. It doesn't deal with wide characters yet and by Felix Janda · 11 years ago
- 876903c Make ls output major, minor for block devices. by Rob Landley · 11 years ago
- 12a4d74 First pass at ls --color by Rob Landley · 11 years ago
- 53b4770 Condense ls help text. by Rob Landley · 11 years ago
- 302d9d3 Fix another segfault in ls -C when terminal size is 0x0. by Rob Landley · 11 years ago
- 1f3c42d Implement mv as an extension of cp. by Rob Landley · 11 years ago
- c2305e8 Implement split. by Rob Landley · 11 years ago
- 5a26a86 Stat cleanup. by Rob Landley · 11 years ago
- 1c1db04 Make groups handle multiple usernames on command line. by Ivo van Poorten · 12 years ago
- 38aa170 add groups implementation to id.c by Ivo van poorten · 12 years ago
- 078d31c Convert getmountlist() to xgetmountlist(). by Rob Landley · 12 years ago
- 5a221e6 Add library function for the file permission formatting in ls and stat by Felix Janda · 12 years ago
- abb0727 Add -f to chmod (just turns off -v). by Rob Landley · 12 years ago
- ff8b9ed uuencode tweak: output a non-whitespace character for 0 in traditional mode. by Rob Landley · 12 years ago
- 2edb485 Clean uudecode up the rest of the way, move pending->posix and default y. by Rob Landley · 12 years ago
- f5b4bbe Finish uuencode cleanup, default y, move it from pending to posix. by Rob Landley · 12 years ago
- 5cb3e26 Fix a bug in patch I fixed back in 2010 but forgot to apply here. by Rob Landley · 12 years ago
- da7fc1c Add -a to who and switch to default y in defconfig. by Rob Landley · 12 years ago
- 799515e Fix a warning when debug code enabled. by Rob Landley · 12 years ago