aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2012-12-08Adding -s (single shot) and -o (omit pids) options to pidofElie De Brauwer
2012-12-08Complicate the rm -i behavior to do what posix specifies.Rob Landley
2012-12-08Make yesno() always read from stdin and write to stderr. (If we need to find ...Rob Landley
2012-12-06Have dirtree_add_node() set parent so error message can provide full path.Rob Landley
2012-12-01Remove unused structure definition.Rob Landley
2012-12-01Fix ancient glibc workaround to force fstatat64Rob Landley
2012-11-23Add expand command as described in POSIX-2008.Jonathan Clairembault
2012-11-26The headers of uClibc and older glibc got unhappy with O_DIRECTORY and some o...Rob Landley
2012-11-25Fix typo.Rob Landley
2012-11-22Remove readlink -m for being poorly defined ("readlink -m /dev/null/and/more"...Rob Landley
2012-11-20Update readlink so -f works. Add -menq while there.Rob Landley
2012-11-19Teach option parsing about [groups] of related options.Rob Landley
2012-11-17Fix leak (call endmntent).Rob Landley
2012-11-16More touch cleanup to use generic infrastructure: use getdate() from libc, us...Rob Landley
2012-11-16Add cut from Jason Kyungwan Han.Rob Landley
2012-11-16Add rebound support to intercept error_exit() and longjmp instead.Rob Landley
2012-11-13Reindent to two spaces per level. Remove vi: directives that haven't worked r...Rob Landley
2012-11-13Older versions of glibc predated posix-2008. They still provide most of what ...0.4.1Rob Landley
2012-11-02Use stridx.Rob Landley
2012-10-07Fix thinko in xpidfile()Rob Landley
2012-08-26Add du command.Ashwini Kumar
2012-07-30Add signal handler to clean up tempfile.Rob Landley
2012-07-23Workaround longstanding glibc/ld bug, ala http://sources.redhat.com/bugzilla/...0.4.0Rob Landley
2012-07-21Make chmod +w respect umask, implement +s and +t, fix ls to show suid/sgid/st...Rob Landley
2012-07-21Use "_password" instead of "_passwd" for names in lib/password.c.Rob Landley
2012-07-18Only add / in dirtree_path if it hasn't already got one, spotted by Ashwini S...Rob Landley
2012-07-17Add passwd by Kyungwan Han.Rob Landley
2012-07-15Genericize llist code a bit: rename llist_free() to llist_traverse(), and no ...Rob Landley
2012-07-15New infrastructure for od (oops).Rob Landley
2012-06-30Add NOP b (byte) suffix to atolx() since od needs it.Rob Landley
2012-06-24Unify chown and chgrp, add support for -hHLP flags.0.3.1Rob Landley
2012-06-22Minor code refactoring.Rob Landley
2012-06-16Add dirtree_parentfd()Rob Landley
2012-06-16More header fiddling: crypt.h is silly, SUSv4 requires crypt() to be prototyp...Rob Landley
2012-06-09Implement DIRTREE_SYMFOLLOW and ls -cSHL.Rob Landley
2012-06-09Feeding -1 to xdup() isn't an error.Rob Landley
2012-06-03Update chmod to work with new dirtree, and fix bugs in string_to_mode().Rob Landley
2012-06-01Changed my mind about the design again, now callback is dirtree_opennode() an...Rob Landley
2012-06-01Factor out dirtree_comeagain() callback, setting up depth-first search with o...Rob Landley
2012-06-01Add xrealpath() at suggestion of Ashish Briggers.Rob Landley
2012-05-27Update chgrp so -R works, tweaking DIRTREE_COMEAGAIN design along the way.Rob Landley
2012-05-20dirtree logic cleanup: switch DIRTREE_NORECURSE and DIRTREE_NOSAVE to DIRTREE...Rob Landley
2012-05-16First pass at a complete rewrite of string_to_mode(). (It compiled!)Rob Landley
2012-05-09Whitespace (tabs vs spaces) cleanup.Rob Landley
2012-04-22More work on ls. Now ls -lR sort of works-ish.Rob Landley
2012-04-14Rewrite dirtree so we don't need readdir, scandir, and fts.h. Rewrite ls (fr...Rob Landley
2012-03-20Using /dev/tty for yesno() is wrong because yes 'n' | cp -ial needs to work.Rob Landley
2012-03-19Unwind gratuitous macros.Rob Landley
2012-03-19Add string to mode_t parserDaniel Walter
2012-03-19Remove "feature test macros", replace non-portable fdprintf() with standard f...Rob Landley