aboutsummaryrefslogtreecommitdiff
path: root/toys
AgeCommit message (Expand)Author
2012-04-09Adding vmstatElie De Brauwer
2012-04-02Adding mountpointElie De Brauwer
2012-03-22Implement comm.Ilya Kuzmich
2012-03-22The -s flag includes staying quiet about missing files.Rob Landley
2012-03-21Test the right variable in NULL guard, and add NOP "s" suffix.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
2012-03-16The linux header doesn't prototype unshare, and the glibc header introduced a...Rob Landley
2012-03-15Simplify nanosleep call.Rob Landley
2012-03-14Implement uniq.Georgi Chorbadzhiyski
2012-03-14Default new ch* commands to n until enough is implemented not to break aborig...Rob Landley
2012-03-13New toys - chmod, chown, and chgrp.Georgi Chorbadzhiyski
2012-03-12Extensive semi-gratuitous refactoring: factor out common code, handle euid!=u...Rob Landley
2012-03-12Tighten up the code a bit, and use actual process group id instead of what /e...Rob Landley
2012-03-12Redo tail to use optargs and optionally support lseek. Add support to optargs...Rob Landley
2012-03-10Fix nanosleep() usage.Georgi Chorbadzhiyski
2012-03-09Replace deprecated libc function with its totally renamed equivalent.Rob Landley
2012-03-09Work around glibc regression by including Linux header directly.Rob Landley
2012-03-08More stabs at getting #includes right, and moving off of deprecated functions.Rob Landley
2012-03-07Fix mkdir -p to accept paths that already exist, and detect path ending in a ...Rob Landley
2012-03-07Consolidate headers.Rob Landley
2012-03-07Silence a couple pointless warnings.Rob Landley
2012-03-06Cleanups: use perror_msg() and make mode a global.Rob Landley
2012-03-06Add mkfifo.Georgi Chorbadzhiyski
2012-03-06Comment and whitespace tweaks.Rob Landley
2012-03-05mkdir cleanups: Let umask do its thing at the syscall level, have mode be a g...Rob Landley
2012-03-05Add mkdir.Georgi Chorbadzhiyski
2012-03-05Fix xargs -0 option.Rob Landley
2012-03-05whoami: fix toy description, no code changesPere Orga
2012-03-04Add clear.Rob Landley
2012-03-04Add tac. (Shell wrapper is smaller, but all-in-one static binary is compellin...Rob Landley
2012-03-04Minor optimization.Rob Landley
2012-03-04Add whoami.Georgi Chorbadzhiyski
2012-03-04Add longopt, refactor so only one instance of each loop, requre = as part of ...Rob Landley
2012-03-03Implement printenv command.Georgi Chorbadzhiyski
2012-03-03Make floating point support depend on TOYBOX_FLOAT, make 0.1m work.Rob Landley
2012-03-03Add fraction and extension support to sleep.Georgi Chorbadzhiyski
2012-03-03Add -A to lsAndre Renaud
2012-03-02This uses floating point.Rob Landley
2012-03-02Add copyright notice, fluff out help text, use xexec().Rob Landley
2012-03-02Only show one normal difference (sans -l) and EOF message should go to stdout...Rob Landley
2012-03-02Cleanup pass, and support unrecognized slash chars ala "echo -e \p".Rob Landley
2012-03-01Add -n, which kernel build needs.Rob Landley
2012-02-28Add "-" type to optargs and teach tail.c to use it. Tighten up help text, us...Rob Landley
2012-02-27Upgrade yesno() and make cp -i use it.Rob Landley
2012-02-26The aboriginal linux build needs ls -ditc and probably some more unimplemente...Rob Landley
2012-02-26Teach patch -p that consecutive /// counts as one path component.Rob Landley
2012-02-26Teach lib/args.c that " " this option must take a _separate_ argument, so "ki...Rob Landley
2012-02-26Factor out common code between killall/kill and move it to lib/lib.c, plus cl...Rob Landley
2012-02-23Implemented -i for cpBryce Fricke