summaryrefslogtreecommitdiffstats
path: root/usr.bin/apply
Commit message (Collapse)AuthorAgeFilesLines
* It's ``apply echo *'' that is similar to ``ls -1'', not ``apply echo a*''.ru2006-12-131-2/+2
| | | | Submitted by: sat
* Sort sections.ru2005-01-181-10/+10
|
* Document incorrect handling of multibyte characters.tjr2004-07-171-1/+5
|
* Revert previous commit, from Bruce:charnier2003-06-091-1/+0
| | | | | | | | This is a style bug. err() is declared is non-returning so that every use of it doesn't need to be encrufted with NOTREACHED. It's too bad that only gcc understands the declaration. Asked by: bde@
* Add NOTREACHED after err() inside of a switch statement.charnier2003-06-081-0/+1
|
* WARNS=4alfred2002-07-142-1/+2
|
* Use `The .Nm utility'charnier2002-04-191-1/+2
|
* Minor whitespace nit.markm2002-03-231-1/+0
|
* Remove leaf node WARNS?=2 (that mainly I added). This shouldmarkm2002-02-081-1/+0
| | | | help the GCC3 transition and CURRENT in general.
* Style improvements recommended by Bruce as a follow up to somedwmalone2001-12-102-6/+7
| | | | | | | | of the recent WARNS commits. The idea is: 1) FreeBSD id tags should follow vendor tags. 2) Vendor tags should not be compiled (though copyrights probably should). 3) There should be no blank line between including cdefs and __FBSDIF.
* Use __FBSDID().markm2001-12-021-5/+4
|
* Revert to version 1.16 which was more correct than either of my attempts.brian2001-08-211-4/+4
|
* Remove unnecessary casts.brian2001-08-211-4/+4
| | | | | | | The original (1.16) code was mostly correct, but this version is far clearer. Casts suggested to now be obfuscations by: bde
* Handle snprintf() returning -1.brian2001-08-201-4/+4
| | | | MFC after: 2 weeks
* Remove whitespace at EOL.dd2001-07-151-1/+1
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+1
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* WARNS= -> WARNS?=dd2001-06-221-1/+1
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* This passes WARNS=2 on alpha and i386kris2001-05-201-1/+3
|
* Fix bogus checking of snprintf() by decreasing the remaining size of thewill2001-01-251-0/+3
| | | | | | | string after each successful snprintf() call. This makes apply(1) work *correctly*, although the whole snprintf() deal really should be redone. Bug noted by: nectar (about 3 weeks ago)
* Fix numerous style(9) bugs: Put #define's before declarations; sort thewill2001-01-211-12/+11
| | | | | | | | | declarations & their arguments; use only one tab after types; restore the type of argv to sync with src tree style; sort new variables under main(); fix continuation indents; remove extra blank line before free()'s. Still to do: fix snprintf() handling as nectar & bde suggested to me. Submitted by: bde
* Reinstate revision 1.11:will2001-01-051-37/+62
| | | | | | | | | | | | | | | | | | | | | | BDECFLAGS; ANSIfy; use EXEC instead of "exec " where appropriate; use proper types (size_t, int); use proper variable names for certain things; get rid of static 'cache' style stuff by moving and sanitizing the original SHELL checking code to main(), this also makes it easier to free() the string; rename file-scope system() to exec_shell(); use snprintf() everywhere instead of sprintf(); actually remember to free() other malloc()'d char pointers in main(). I left out the -s option in this revision along with getusershell() checking because of objections made by Warner Losh <imp> and Garrett Wollman <wollman>. I agreed with their assertions that such code was unnecessary in a program like this. I dare people to make this coredump now. Some suggestions: nectar (snprintf() truncate checking) Reviewed by: markm, eivind, jedgar Tortured by: examples in apply(1), fuzz(1), and a lot of random ideas I came up with
* Back out last commit; it had string function mistakes. I will fix thiswill2001-01-042-47/+23
| | | | | | and make sure it works next time. Submitted by: markm, jhb
* Document new -s option: pass a shell to apply(1) when the desired shellwill2001-01-041-0/+7
| | | | isn't found in /etc/shells.
* BDECFLAGS; de-__P()-ify, ANSIfy, use snprintf() instead of sprintf(),will2001-01-041-23/+40
| | | | | | | | | | | | | | especially on strings passed from argv; rename system() to exec_shell(), and make it static; use strlcpy() and make sure it works; use proper type (size_t) to be passed to malloc()/realloc(). Use getusershell() to make sure the SHELL environment variable passed is safe to use. Add new option -s to allow anal users to pass things like perl; this option is here along with getusershell() checking since the such checking is only intended to affect things like suidperl that might call apply(1). Reviewed by: markm, jhb, C. Stephen Gunn <csg@waterspout.com>
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-3/+3
|
* Include sys/types.hbrian2000-10-161-0/+2
|
* fork() -> vfork()kris2000-05-191-3/+4
| | | | | | | | This would have been commit #2 which was "Obtained from: BSD/OS" except their code is buggy (they call err() if the execl() fails, which will incorrectly call exit()), so instead this is: Obtained from: NetBSD
* Do not dot terminate errx() strings. Add rcsid.charnier1999-12-052-11/+14
| | | | Document -d flag. Rework SYNOPSIS section
* Fix off-by-one error leading to a segfault.kris1999-12-041-1/+5
| | | | Noticed by: Thomas Stromberg <tstromberg@rtci.com>
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+1
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Merge from OpenBSD up to rev 1.7 (matches NetBSD rev 1.4):eivind1999-02-121-10/+16
| | | | Misc small cleanups.
* Merge from OpenBSD up to rev 1.5 (matches NetBSD up to rev 1.3):eivind1999-02-121-4/+3
| | | | * Clean up waitpid parameter handling.
* Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).archie1998-12-062-1/+2
|
* Calls one or more of malloc(), warn(), err(), syslog(), execlp() ordes1998-10-131-1/+1
| | | | | | | | | | | execvp() in the child branch of a vfork(). Changed to use fork() instead. Some of these (mv, find, apply, xargs) might benefit greatly from being rewritten to use vfork() properly. PR: Loosely related to bin/8252 Approved by: jkh and bde
* .Sh ENVIRONMENT VARIABLES -> .Sh ENVIRONMENTphk1998-05-131-1/+1
| | | | | | PR: 6599 Reviewed by: phk Submitted by: Josh Gilliam <josh@quick.net>
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aq.charnier1998-03-231-2/+2
|
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-1/+1
| | | | posix standard on the topic.
* Change an incorrect reference to the "-n" flag to "-#".mpp1996-03-111-1/+1
| | | | | Submitted by: Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp> Obtained from: NetBSD-bugs mailing list
* Remove trailing whitespace.rgrimes1995-05-301-1/+1
|
* BSD 4.4 Lite Usr.bin Sourcesrgrimes1994-05-273-0/+368
OpenPOWER on IntegriCloud