Rob Landley [Sun, 19 Feb 2012 00:09:14 +0000 (18:09 -0600)]
Cleanups to pidof (including some global infrastructure shared with killall).
Rob Landley [Sat, 18 Feb 2012 21:19:00 +0000 (15:19 -0600)]
More ls updates from Andre Renaud: Add -R and initial support for listing files on the command line.
Rob Landley [Sat, 18 Feb 2012 21:12:41 +0000 (15:12 -0600)]
Add killall by Andreas Heck, and factor out common pid code to lib.h.
Rob Landley [Sat, 18 Feb 2012 21:08:31 +0000 (15:08 -0600)]
Add pidof by Andreas Heck.
Timothy Elliott [Thu, 9 Feb 2012 06:47:36 +0000 (22:47 -0800)]
Add tests for cmp.
Still needs to handle directories properly and needs padding for
-l output.
Rob Landley [Fri, 17 Feb 2012 18:06:12 +0000 (12:06 -0600)]
Add V=1 support to make.
Rob Landley [Fri, 17 Feb 2012 18:05:26 +0000 (12:05 -0600)]
Sigh: moving a header to toys.h isn't very useful if I forget to check in toys.h.
Rob Landley [Fri, 17 Feb 2012 11:27:37 +0000 (05:27 -0600)]
Move realpath from loopfiles() to a for loop, so we don't get hung on read permission for file data when we just want to look at directory info.
Rob Landley [Fri, 17 Feb 2012 10:47:16 +0000 (04:47 -0600)]
Realpath, by Andre Renaud.
Rob Landley [Fri, 17 Feb 2012 10:46:55 +0000 (04:46 -0600)]
Move includes into toys.h, more xprintf()
Rob Landley [Thu, 16 Feb 2012 23:51:51 +0000 (17:51 -0600)]
Minor cleanups: trim spaces from strings, use xprintf().
Elie De Brauwer [Mon, 13 Feb 2012 16:15:49 +0000 (17:15 +0100)]
Adding free and uptime
Rob Landley [Wed, 15 Feb 2012 12:12:38 +0000 (06:12 -0600)]
Error message fix from Pere (gotrunks at gmail).
Rob Landley [Wed, 15 Feb 2012 11:55:38 +0000 (05:55 -0600)]
Minor cleanups to hostname.
Rob Landley [Wed, 15 Feb 2012 11:47:38 +0000 (05:47 -0600)]
Add hostname from Andre Renaud.
Rob Landley [Tue, 14 Feb 2012 05:43:33 +0000 (23:43 -0600)]
Teach ln about multiple arguments.
Rob Landley [Tue, 14 Feb 2012 04:57:30 +0000 (22:57 -0600)]
Add ln from Andre Renaud.
Rob Landley [Tue, 14 Feb 2012 03:48:22 +0000 (21:48 -0600)]
Tweak from Frank Bergmann: some broken optimizers complain about "type-punned pointers", so typecast to void * instead to shut it up. (Up there with the "may be used uninitialized" gripes.)
Rob Landley [Tue, 14 Feb 2012 03:27:50 +0000 (21:27 -0600)]
Second drop of ls from Andre, adds -l.
Rob Landley [Tue, 14 Feb 2012 03:26:27 +0000 (21:26 -0600)]
Add ls from Andre Renaud.
Rob Landley [Tue, 14 Feb 2012 03:16:03 +0000 (21:16 -0600)]
Commit the web page change that announced the release.
Rob Landley [Tue, 14 Feb 2012 03:13:05 +0000 (21:13 -0600)]
Minor code cleanup and typo fix.
Elie De Brauwer [Sun, 12 Feb 2012 13:14:58 +0000 (14:14 +0100)]
Add test for basename, fix issue where suffix is wrongfully applied if it appears in the middle of the filename
Rob Landley [Mon, 13 Feb 2012 14:44:32 +0000 (08:44 -0600)]
The unshare test needs $CC defined, source configure to get it.
Rob Landley [Mon, 13 Feb 2012 13:46:36 +0000 (07:46 -0600)]
Added tag 0.2.0 for changeset
e708e8933a50
Rob Landley [Mon, 13 Feb 2012 00:04:15 +0000 (18:04 -0600)]
Add clear (wrapper).
Timothy Elliott [Sat, 11 Feb 2012 05:59:57 +0000 (21:59 -0800)]
Add tests for head
This exposed one issue in head.c -- printf was not flushing and
file names could appear after file contents instead of before.
The issue is fixed by calling xflush after xprintf.
Rob Landley [Sat, 11 Feb 2012 19:42:24 +0000 (13:42 -0600)]
Minor cleanups to echo: collapse together three tolower() calls, make indent/brackets a bit more regular/obvious, and replace some spaces with tabs in help text (in a way that won't matter until I finish rewriting scripts/config2help.py in C).
Elie De Brauwer [Sat, 11 Feb 2012 13:58:50 +0000 (14:58 +0100)]
Fix overflow in octal formatting in echo, add support for hexadecimal input, add tests for octal and hexadecimal formatting
Elie De Brauwer [Sat, 11 Feb 2012 12:46:49 +0000 (13:46 +0100)]
Add tests for cksum
Elie De Brauwer [Sat, 11 Feb 2012 12:48:04 +0000 (13:48 +0100)]
Correct cksum parameters and clarify -N option
Elie De Brauwer [Fri, 10 Feb 2012 12:36:48 +0000 (13:36 +0100)]
Correct description of nice levels in help of nice
Rob Landley [Thu, 9 Feb 2012 12:36:42 +0000 (06:36 -0600)]
Cleanups for head.
Timothy Elliott [Tue, 7 Feb 2012 01:35:59 +0000 (17:35 -0800)]
Implement head
Rob Landley [Thu, 9 Feb 2012 12:09:27 +0000 (06:09 -0600)]
Make atolx() error_exit() if fed a string that doesn't convert entirely into an integer.
Rob Landley [Thu, 9 Feb 2012 01:29:39 +0000 (19:29 -0600)]
Use stpcpy() (posix 2008) for slight code shrink.
Rob Landley [Thu, 9 Feb 2012 01:29:14 +0000 (19:29 -0600)]
Switch from deprecated function to gratuitously renamed identical non-depricated function. *shrug*
Rob Landley [Wed, 8 Feb 2012 04:25:59 +0000 (22:25 -0600)]
More cmp.c shrinkage.
Abuse loopfiles() to handle both arguments, caching the first pass in globals.
That eliminates get_fd() since loopfiles already knows how to handle "-" arg.
Chop toybuf in half and use half for each file, eliminating malloc/free.
main() becomes just a call to loopfiles(), which does all open/close.
Rob Landley [Wed, 8 Feb 2012 03:32:32 +0000 (21:32 -0600)]
Iterative cleanups on cmp.c: silence warnings, only free if TOYBOX_FREE, use xopen(), style cleanup on curly brackets.
Luis Felipe Strano Moraes [Tue, 7 Feb 2012 20:13:41 +0000 (12:13 -0800)]
Switching who default to 'n' since it's not yet fully implemented.
Luis Felipe Strano Moraes [Tue, 7 Feb 2012 17:15:17 +0000 (09:15 -0800)]
Added time to the output of who command.
Luis Felipe Strano Moraes [Tue, 7 Feb 2012 00:29:09 +0000 (16:29 -0800)]
Initial version of who command.
Luis Felipe Strano Moraes [Mon, 6 Feb 2012 22:36:56 +0000 (14:36 -0800)]
Silence really boring compiler warning.
Timothy Elliott [Mon, 6 Feb 2012 09:28:40 +0000 (01:28 -0800)]
Implement cmp
Rob Landley [Tue, 7 Feb 2012 06:31:37 +0000 (00:31 -0600)]
Fix sort -uc (pointer vs pointer to pointer confusion, covered by typecast).
Rob Landley [Tue, 7 Feb 2012 03:15:19 +0000 (21:15 -0600)]
Document that optflags is always an int (so 32 bit and 64 bit platforms behave the same).
Rob Landley [Tue, 7 Feb 2012 03:14:22 +0000 (21:14 -0600)]
Bugfix for -x, add CONFIG_SORT_FLOAT, and new test suite entry.
Rob Landley [Sun, 5 Feb 2012 21:25:17 +0000 (15:25 -0600)]
This id implementation is not remotely SUSv4 compliant, default n until I get a chance to finish it.
Rob Landley [Sat, 4 Feb 2012 18:20:39 +0000 (12:20 -0600)]
Add a basic README and an example to "make help".
Rob Landley [Sat, 4 Feb 2012 17:23:18 +0000 (11:23 -0600)]
Tweak help command's help text, and remove unimplemented option.
Rob Landley [Sat, 4 Feb 2012 16:39:17 +0000 (10:39 -0600)]
Cleaning out one more old gpl notice that no longer applies after the switch to BSD in november.
Rob Landley [Sat, 4 Feb 2012 05:16:28 +0000 (23:16 -0600)]
Add autodetect for container support.
Rob Landley [Sat, 4 Feb 2012 04:39:55 +0000 (22:39 -0600)]
Fix bad link that was confusing people. (Oops.)
Luis Felipe Strano Moraes [Fri, 3 Feb 2012 13:17:48 +0000 (11:17 -0200)]
Removing unecessary allocation.
Rob Landley [Thu, 2 Feb 2012 13:44:04 +0000 (07:44 -0600)]
Implement xargs -E.
Rob Landley [Thu, 2 Feb 2012 13:42:31 +0000 (07:42 -0600)]
Very slight efficiency tweak.
Rob Landley [Thu, 2 Feb 2012 13:29:09 +0000 (07:29 -0600)]
Test suite comment tweaks.
Rob Landley [Thu, 2 Feb 2012 13:28:06 +0000 (07:28 -0600)]
Basename and env are usable, default them to y.
Rob Landley [Thu, 2 Feb 2012 13:27:35 +0000 (07:27 -0600)]
Quick and dirty terminal_size() and yesno() functions, both of which need to be improved.
Rob Landley [Thu, 2 Feb 2012 13:27:05 +0000 (07:27 -0600)]
Update web page a bit.
Rob Landley [Thu, 2 Feb 2012 13:26:39 +0000 (07:26 -0600)]
Commit 415 needs the other two files. (Oops.)
Rob Landley [Mon, 30 Jan 2012 13:40:32 +0000 (07:40 -0600)]
More work on xargs: bugfix and tests.
Rob Landley [Sun, 29 Jan 2012 19:54:13 +0000 (13:54 -0600)]
Add <>= to lib/args.c, with documentation.
Rob Landley [Sat, 28 Jan 2012 18:07:45 +0000 (12:07 -0600)]
Implement xargs (first pass, not full SUSv4 yet).
Rob Landley [Fri, 27 Jan 2012 12:49:28 +0000 (06:49 -0600)]
Add id command from Tim Bird.
Rob Landley [Mon, 23 Jan 2012 04:28:04 +0000 (22:28 -0600)]
Patch shouldn't be bothered by DOS newlines.
Rob Landley [Mon, 23 Jan 2012 02:33:15 +0000 (20:33 -0600)]
Add three commands that can be done as simple shell scripts (one sed is in, anyway), and don't need to be implemented in C.
Rob Landley [Mon, 23 Jan 2012 01:41:42 +0000 (19:41 -0600)]
Add wiki link and make about less stale.
Tryn Mirell [Fri, 20 Jan 2012 06:02:37 +0000 (00:02 -0600)]
'env' and 'basename' refactored
Rob Landley [Thu, 19 Jan 2012 02:32:52 +0000 (20:32 -0600)]
Comment changes, and add a blank line to the help text.
Rob Landley [Thu, 19 Jan 2012 02:31:59 +0000 (20:31 -0600)]
Add -x option to sort (like -n, but hexadecimal), because I needed it for something.
Tryn Mirell [Mon, 16 Jan 2012 07:48:51 +0000 (01:48 -0600)]
'env' implementation - Initial
Tryn Mirell [Mon, 16 Jan 2012 05:27:22 +0000 (23:27 -0600)]
'basename': Handle where we have no / passed
Tryn Mirell [Mon, 16 Jan 2012 05:20:06 +0000 (23:20 -0600)]
Initial 'basename' implementation
Rob Landley [Mon, 16 Jan 2012 07:44:17 +0000 (01:44 -0600)]
Fluff out documentation and skeleton code.
Rob Landley [Sun, 15 Jan 2012 05:28:15 +0000 (23:28 -0600)]
Expand comments.
Rob Landley [Wed, 28 Dec 2011 22:50:16 +0000 (16:50 -0600)]
Don't make toysh default to y until it does something useful.
Rob Landley [Wed, 28 Dec 2011 22:17:13 +0000 (16:17 -0600)]
Fix "make help".
Rob Landley [Wed, 28 Dec 2011 19:01:12 +0000 (13:01 -0600)]
Bugfix (spotted by Nathan McSween): xread can't detect <0 if the return type is stored in an unsigned variable.
Rob Landley [Tue, 13 Dec 2011 05:49:55 +0000 (23:49 -0600)]
Implement unshare.
Rob Landley [Mon, 12 Dec 2011 21:19:52 +0000 (15:19 -0600)]
Forgot to check in loopfiles_rw changes needed by truncate.
Rob Landley [Sun, 11 Dec 2011 09:58:43 +0000 (03:58 -0600)]
Implement truncate.
Rob Landley [Sun, 11 Dec 2011 09:54:58 +0000 (03:54 -0600)]
Whitespace/wordwrap changes.
Rob Landley [Sun, 11 Dec 2011 08:36:01 +0000 (02:36 -0600)]
Implment cal.
Rob Landley [Wed, 30 Nov 2011 13:21:23 +0000 (07:21 -0600)]
Split out parse_optflaglist(), and move local variables to optflagstate.
Rob Landley [Mon, 28 Nov 2011 06:22:15 +0000 (00:22 -0600)]
Fix "tar cvjfC file dir", make @ not eat an argument, add debug check for (as yet) unsupported multi-function option (ala "x*@").
Rob Landley [Tue, 22 Nov 2011 12:08:26 +0000 (06:08 -0600)]
Don't complain about "possibly reversed" hunks that merely moved later in the file, just give a potential reason if it failed to apply.
Rob Landley [Mon, 21 Nov 2011 03:36:37 +0000 (21:36 -0600)]
Implement unlink.
Rob Landley [Mon, 21 Nov 2011 03:13:47 +0000 (21:13 -0600)]
Implement nohup.
Rob Landley [Sun, 20 Nov 2011 17:39:13 +0000 (11:39 -0600)]
Add link.
Rob Landley [Fri, 18 Nov 2011 12:21:29 +0000 (06:21 -0600)]
Add dirname, and typo fixes to wc header.
Rob Landley [Thu, 17 Nov 2011 13:26:22 +0000 (07:26 -0600)]
Add wc.
Rob Landley [Tue, 15 Nov 2011 09:01:41 +0000 (03:01 -0600)]
More GPL->BSD debris.
Rob Landley [Tue, 15 Nov 2011 08:59:50 +0000 (02:59 -0600)]
Switch license.html to BSD, and delete the old "FSF screwed over Mepis" rant (which while still true, is no longer relevant).
Rob Landley [Tue, 15 Nov 2011 08:38:13 +0000 (02:38 -0600)]
New mailing list.
Rob Landley [Tue, 15 Nov 2011 08:24:44 +0000 (02:24 -0600)]
Switch to 2-clause BSD license (with caveat about scripts directory).
Rob Landley [Tue, 15 Nov 2011 07:09:27 +0000 (01:09 -0600)]
SUSv4 is out, update template link.
Rob Landley [Tue, 15 Nov 2011 06:57:45 +0000 (00:57 -0600)]
Implement tty command.
Rob Landley [Mon, 14 Nov 2011 03:05:28 +0000 (21:05 -0600)]
xreadall() returns void... how does that even compile?
Rob Landley [Mon, 14 Nov 2011 02:02:47 +0000 (20:02 -0600)]
Prepare for license switch by (regrettably) removing Charlie Shepherd's code, at least until I can get in touch with him to to get permission to relicense it.
Charlie's @gentoo address bounces, and he hasn't replied to his @gmail address.
I welcome him as a contributor but can't _find_ him, so I can't ship his
basename, dirname, mkfifo, touch, and tty command code under a non-GPL license.
This essentially reverts the following commits:
147: implement touch
157: implement mkfifo
160: tweak touch
161: touch bugfix
162: touch -l
176: implement basename, dirname
179: implement tty
I also looked at these commits, which Charlie contributed to but which
don't need to be reverted. (Mostly whitespace changes and typo fixes,
plus some minor changes to build infrastructure that don't affect the
resulting code.)
*149: add null pointer check
*154: add .hgignore
*155: whitespace
*156: whitespace (the rest is by me)
*158: add toys/help.h to makefile dependencies
*159: fix typo in description
*164: typo in df (dereference pointer)
*180: .hgignore
*182: whitespace in error messages
*183: add headers to make dependencies
*244: comment and whitespace cleanups
*247: build tweak: error checking
*248: typo in comment
*249: .hgignore
*250: wrong word in comment
*251: whitespace
*252: whitespace
Several files in the "scripts" directory are still GPLv2 (kconfig,
bloat-o-meter, Robert Foglietta's bash version of config2help.sh), but
they're just build infrastructure that doesn't wind up in the resulting
binary. I plan to address this later on general principles, but it's
"mere aggregation" and not an immediate priority.)