aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/xargs/xargs.1
Commit message (Collapse)AuthorAgeFilesLines
* MFC: r175680, r175728.Giorgos Keramidas2008-12-061-2/+30
| | | | | | | | | | Document the no-op -r option of BSD xargs(1). PR: docs/106416 Submitted by: Pete Slagle, freebsd-stable at voidcaptain.com Notes: svn path=/stable/6/; revision=185708
* MFC: (1.35) wording tweaksDag-Erling Smørgrav2005-12-211-3/+2
| | | | Notes: svn path=/stable/6/; revision=153613
* Sync program's usage() with manpage's SYNOPSIS.Ruslan Ermilov2005-05-211-1/+1
| | | | Notes: svn path=/head/; revision=146466
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Document incorrect handling of multibyte characters with -I and -J options.Tim J. Robbins2004-08-021-1/+10
| | | | Notes: svn path=/head/; revision=132998
* Fix spelling error in my own paragraph.Dima Dorfman2004-06-281-1/+1
| | | | Notes: svn path=/head/; revision=131229
* Markup bits.Ruslan Ermilov2003-05-211-1/+1
| | | | | | | Approved by: re (blanket) Notes: svn path=/head/; revision=115217
* Add a new -o option to tell xargs(1) to reopen /dev/tty as stdin inMaxime Henrion2003-03-231-2/+9
| | | | | | | | | | | | | | | the child process, before executing the command. This is very useful when you do stuff like ``find ... | xargs interactive_application''. Without -o, the application would inherit the pipe as its stdin, and you thus lose any control over it. This flag has been carefully chosen to not conflit with other options of other xargs utilities like GNU xargs. Reviewed by: jmallett Notes: svn path=/head/; revision=112514
* Extend our -R extension which sets the number of arguments in which -I willJuli Mallett2003-02-261-0/+3
| | | | | | | | | | replace to support magic values less than zero, which mean to just go nuts and expand as many as we want. MFC after: 2 weeks Notes: svn path=/head/; revision=111581
* A few changes for clarity.Tom Rhodes2003-01-271-13/+17
| | | | | | | | PR: 47170 Submitted by: Gary W. Swearingen <swear@attbi.com> (original version) Notes: svn path=/head/; revision=109944
* english(4) police.Jens Schweikhardt2002-12-271-1/+1
| | | | Notes: svn path=/head/; revision=108317
* mdoc(7) police: most -mdoc macros can take multiple arguments.Ruslan Ermilov2002-12-231-2/+1
| | | | Notes: svn path=/head/; revision=108215
* Add the -P option which executes multiple copies of the specified utilityTim J. Robbins2002-12-211-1/+9
| | | | | | | in parallel. Idea from GNU xargs. Notes: svn path=/head/; revision=108156
* When giving an example that relies on shell expansion/globbing, don't use aJuli Mallett2002-06-221-1/+1
| | | | | | | | | replstr for -J that will be interpereted by the shell. MFC after: 1 day Notes: svn path=/head/; revision=98614
* Note that this appeared at least as early as PWB UNIX.Juli Mallett2002-06-101-0/+4
| | | | | | | Use the literal string 'PWB UNIX', as we still have no .At macro for it. Notes: svn path=/head/; revision=98107
* mdoc(7) police: punctuation, miscellaneous.Ruslan Ermilov2002-05-301-8/+8
| | | | Notes: svn path=/head/; revision=97549
* Fix a "tiny and squeeby and little" markup mistake.Juli Mallett2002-05-141-1/+1
| | | | | | | Submitted by: fenner Notes: svn path=/head/; revision=96619
* Modify the -p implementation to use a user's locale, so they can respond toJuli Mallett2002-05-051-1/+3
| | | | | | | | | | | | | | | the prompt in their native language. Also make the prompt fit what POSIX asks for (?...). This should not affect use of -p with yes(1) [as every locale I know of matches 'y' as YESEXPR as well], but that's what -t is for anyway. -p is meant to be really used interactively. Submitted by: tjr, jmallett Notes: svn path=/head/; revision=96057
* A markup fix, and document -R as non-standard.Juli Mallett2002-05-021-3/+5
| | | | Notes: svn path=/head/; revision=95906
* Make -J a proper flag internal to the code (rather than just check forJuli Mallett2002-05-021-2/+13
| | | | | | | | | | | use of replstr and lack of Iflag), and add -R, which when given with -I controls the number of arguments on which replacement will be done. Some people happen to think it's idiotic to limit to 5 arguments, so let the user override it if they like. Notes: svn path=/head/; revision=95905
* After 3 months...Juli Mallett2002-04-191-5/+58
| | | | | | | | | | | | | | | | | | | | Merge xargs(1) with that of xMach. Bring in xargs(1) changes to add -L and -I as per the Single Unix Specification version 3. Proper exit status numbers are implemented, and the manual page has been updated to reflect reality. The code has been ANSIfied, and a new file has been added to xargs(1) to do the substring substitution as SUSv3 requires. Traditional behaviour should not be affected, use of -J should be deprecated in favor of the more portable -I (though -J has been left, for now). Submitted by: me, tjr (the exit status stuff) Obtained from: xMach Notes: svn path=/head/; revision=95080
* Spelling police: extention -> extension.Dima Dorfman2001-07-051-1/+1
| | | | Notes: svn path=/head/; revision=79297
* Add a -J replstr option that allows the user to tell xargs to insertDima Dorfman2001-05-151-1/+39
| | | | | | | | | | | the data read from standard input at a specific point in the command line arguments rather than at the end. Submitted by: dd, gad Reviewed by: gad, brian Notes: svn path=/head/; revision=76605
* Alphabetize command-line options in the synopsis.Dima Dorfman2001-05-021-1/+1
| | | | Notes: svn path=/head/; revision=76201
* mdoc(7) police: Fixed typo and markup in rev.1.11.Ruslan Ermilov2001-04-131-2/+2
| | | | Notes: svn path=/head/; revision=75466
* o The -s limit is ARG_MAX - 4K, not ARG_MAX - 2K.Brian Somers2001-04-101-4/+14
| | | | | | | | | | | | | | | | | | | | | o Mention that the current environment is part of the -s calculation. o Add a BUGS section that warns against executing a program that increases the size of the argument list or the size of the environment. I have wondered for a while what the difference is between get a big list | xargs sudo command which fails and get a big list | sudo xargs command which succeeds. The answer is that in the first case, sudo expands the environment and pushes the amount of data passed into execve over the E2BIG threshold. Notes: svn path=/head/; revision=75398
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-271-2/+3
| | | | Notes: svn path=/head/; revision=70410
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-191-1/+0
| | | | Notes: svn path=/head/; revision=70197
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* Use .XrPhilippe Charnier2000-03-261-2/+2
| | | | Notes: svn path=/head/; revision=58627
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-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 Notes: svn path=/head/; revision=48792
* Submitted by: Peter Hawkins <peter@clari.net.au>Daniel O'Callaghan1997-12-131-1/+1
| | | | | | | Spelling police. Notes: svn path=/head/; revision=31694
* Use err(3) instead of local redefinition.Philippe Charnier1997-08-271-8/+8
| | | | Notes: svn path=/head/; revision=28826
* Reviewed by: Warner Losh <imp@village.org>Warner Losh1996-11-011-0/+11
| | | | | | | | | | Submitted by: Marc Slemko <marcs@znep.com> Obtained from: OpenBSD Add -0 for reading the results of find -0. Notes: svn path=/head/; revision=19318
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-271-0/+161
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590