Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-17 | Remove unused min/max macros. | Rob Landley | |
2013-03-11 | Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl ↵0.4.4 | Rob Landley | |
doesn't conform to posix-2008. | |||
2013-03-09 | O_NOFOLLOW is specified by posix-2008 and varies by target, don't try to ↵ | Rob Landley | |
supply them for broken headers. | |||
2013-02-24 | Comment updates and a policy statement about avoiding #define GNU_dammit | Rob Landley | |
2013-02-04 | More support for old (~2008) build environments, move the #ifdef checks for ↵ | Rob Landley | |
symbols out of specific library version checks (shouldn't hurt anything), remove obsolete debug macro. | |||
2013-01-31 | Fix -in behavior: descend into existing directory without prompting, show ↵ | Rob Landley | |
full path in error messages, actually overwrite when answering yes to -i. | |||
2013-01-17 | Fix xabspath() resolving symlink after .., and properly detecting failure ↵ | Rob Landley | |
for last entry after nondir. | |||
2013-01-15 | Work around more random uClibc-specific breakage. | Rob Landley | |
2013-01-02 | Have error_msg() and friends set TT.exitval to 1 if it's still 0, clean out ↵ | Rob Landley | |
other places that were setting it that no longer need to. | |||
2012-12-31 | Make dirtree_handle_callback() start with dirtree_ like the rest of the ↵ | Rob Landley | |
dirtree functions. | |||
2012-12-29 | Ashwini Sharma pointed out that my previous tweak to [!abc] groups still ↵ | Rob Landley | |
didn't get the error reporting right (test case "touch -d 12 -r f2 f1"). This says "no 'r' with 'd'" for that, and still shouldn't be able to fall off the end of the list (segfault) because an option can't conflict with itself (that's what the ~(1<<i) on lib/args.c line 317 is for). | |||
2012-12-27 | Fix option grouping. | Rob Landley | |
2012-12-16 | Extend killall with support for -v and -i | Elie De Brauwer | |
2012-12-08 | Adding -s (single shot) and -o (omit pids) options to pidof | Elie De Brauwer | |
2012-12-08 | Complicate the rm -i behavior to do what posix specifies. | Rob Landley | |
2012-12-08 | Make yesno() always read from stdin and write to stderr. (If we need to find ↵ | Rob Landley | |
our tty, open /dev/tty, but existing users don't.) | |||
2012-12-06 | Have dirtree_add_node() set parent so error message can provide full path. | Rob Landley | |
2012-12-01 | Remove unused structure definition. | Rob Landley | |
2012-12-01 | Fix ancient glibc workaround to force fstatat64 | Rob Landley | |
2012-11-23 | Add expand command as described in POSIX-2008. | Jonathan Clairembault | |
Erratum: Do not handle backspace. | |||
2012-11-26 | The headers of uClibc and older glibc got unhappy with O_DIRECTORY and some ↵ | Rob Landley | |
other stuff. Fix it up in portability.h. | |||
2012-11-25 | Fix typo. | Rob Landley | |
2012-11-22 | Remove readlink -m for being poorly defined ("readlink -m ↵ | Rob Landley | |
/dev/null/and/more" answers what question, exactly?), rewrite xabspath() to work right and not depend on realpath, fix subtle longstanding bug in llist_traverse(). | |||
2012-11-20 | Update readlink so -f works. Add -menq while there. | Rob Landley | |
2012-11-19 | Teach option parsing about [groups] of related options. | Rob Landley | |
2012-11-17 | Fix leak (call endmntent). | Rob Landley | |
2012-11-16 | More touch cleanup to use generic infrastructure: use getdate() from libc, ↵ | Rob Landley | |
use flag macros, option parsing can collect argument strings in global block, use existing perror_* macros. | |||
2012-11-16 | Add cut from Jason Kyungwan Han. | Rob Landley | |
2012-11-16 | Add rebound support to intercept error_exit() and longjmp instead. | Rob Landley | |
2012-11-13 | Reindent to two spaces per level. Remove vi: directives that haven't worked ↵ | Rob Landley | |
right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. The actual code should be the same afterward, this is just cosmetic refactoring. | |||
2012-11-13 | Older versions of glibc predated posix-2008. They still provide most of what ↵0.4.1 | Rob Landley | |
we need, but require a boot to the headers to get them to admit it. Note that uClibc lies and claims to be glibc so we have to specifically exclude it here. | |||
2012-11-02 | Use stridx. | Rob Landley | |
2012-10-07 | Fix thinko in xpidfile() | Rob Landley | |
2012-08-26 | Add du command. | Ashwini Kumar | |
2012-07-30 | Add signal handler to clean up tempfile. | Rob Landley | |
2012-07-23 | Workaround longstanding glibc/ld bug, ala ↵0.4.0 | Rob Landley | |
http://sources.redhat.com/bugzilla/show_bug.cgi?id=3400, which prevents "./toybox | wc" from producing any output when toybox was statically linked. | |||
2012-07-21 | Make chmod +w respect umask, implement +s and +t, fix ls to show ↵ | Rob Landley | |
suid/sgid/stid without x bit. | |||
2012-07-21 | Use "_password" instead of "_passwd" for names in lib/password.c. | Rob Landley | |
2012-07-18 | Only add / in dirtree_path if it hasn't already got one, spotted by Ashwini ↵ | Rob Landley | |
Sharma. | |||
2012-07-17 | Add passwd by Kyungwan Han. | Rob Landley | |
2012-07-15 | Genericize llist code a bit: rename llist_free() to llist_traverse(), and no ↵ | Rob Landley | |
longer accept NULL as a synonym for free. | |||
2012-07-15 | New infrastructure for od (oops). | Rob Landley | |
2012-06-30 | Add NOP b (byte) suffix to atolx() since od needs it. | Rob Landley | |
2012-06-24 | Unify chown and chgrp, add support for -hHLP flags.0.3.1 | Rob Landley | |
2012-06-22 | Minor code refactoring. | Rob Landley | |
2012-06-16 | Add dirtree_parentfd() | Rob Landley | |
2012-06-16 | More header fiddling: crypt.h is silly, SUSv4 requires crypt() to be ↵ | Rob Landley | |
prototyped in unistd.h. The fact glibc refuses to do so without a wacky #define is a glibc bug, treat it as such. | |||
2012-06-09 | Implement DIRTREE_SYMFOLLOW and ls -cSHL. | Rob Landley | |
2012-06-09 | Feeding -1 to xdup() isn't an error. | Rob Landley | |
2012-06-03 | Update chmod to work with new dirtree, and fix bugs in string_to_mode(). | Rob Landley | |