aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/xargs/xargs.c
Commit message (Expand)AuthorAgeFilesLines
* MFC: (1.58) add -r option for GNU compatibilityDag-Erling Smørgrav2005-12-211-1/+4
* MFC 1.22: Fix -0 vs -L/-I processing, mainly so that 'xargs -0 -I []' willGarance A Drosehn2005-02-271-2/+9
* Call setlocale() with category LC_ALL instead of LC_MESSAGES. We needTim J. Robbins2004-07-121-1/+1
* - Use _PATH_TTY and _PATH_DEVNULL macros.Maxime Henrion2003-06-131-5/+9
* Use waitpid, instead of wait3, which is more portable.Juli Mallett2003-06-131-2/+2
* Remove redundant return; from void function.Juli Mallett2003-06-131-1/+0
* Don't shaddow exp(3).David E. O'Brien2003-05-031-6/+5
* Migrate to a new way of dealing with building from old revisions ofWarner Losh2003-04-051-14/+1
* Simplify compatibility ifdef.Warner Losh2003-04-041-4/+7
* When -o isn't specified, open /dev/null as stdin.Maxime Henrion2003-03-281-2/+5
* Add a new -o option to tell xargs(1) to reopen /dev/tty as stdin inMaxime Henrion2003-03-231-3/+12
* Extend our -R extension which sets the number of arguments in which -I willJuli Mallett2003-02-261-3/+6
* De-typo usage string.Juli Mallett2003-02-261-1/+1
* Add the -P option which executes multiple copies of the specified utilityTim J. Robbins2002-12-211-18/+48
* Take __FreeBSD_version into account when BOOTSTRAPPING.Ruslan Ermilov2002-11-131-5/+7
* Fix typos; each file has at least one s/seperat/separat/Jens Schweikhardt2002-08-111-2/+2
* Declare environ as char **environ like in environ(7), not char *environ[].Tim J. Robbins2002-07-011-1/+1
* Stylistic nit:Juli Mallett2002-06-221-5/+5
* Err, duh, free(3) doesn't set its argument to NULL... Fix realloc of a freedJuli Mallett2002-06-041-1/+3
* Restructure sanity checks so that -I and -J just override eachother, ratherJuli Mallett2002-05-301-5/+6
* Allow the input line to be NULL, and teach strnsubst() that NULL means to useJuli Mallett2002-05-301-3/+3
* Simplify prerun() in the case where there are no arguments. Can't do -I or -JJuli Mallett2002-05-171-1/+1
* xargs.c,v 1.33 broke the upgrade path from old versions of 4.x and 5.0.Ruslan Ermilov2002-05-101-1/+9
* -I and -J both set the same variable, replstr, to the string to replace withJuli Mallett2002-05-061-0/+2
* Modify the -p implementation to use a user's locale, so they can respond toJuli Mallett2002-05-051-12/+60
* Fix a typo.Juli Mallett2002-05-051-2/+3
* In an effort to make this utility easier to work with at a source level, moveJuli Mallett2002-05-051-139/+152
* Grouping changes.Juli Mallett2002-05-041-2/+2
* Don't use pointers as booleans.Juli Mallett2002-05-041-3/+3
* Replace calloc(3) with malloc(3), and set the tail of theJuli Mallett2002-05-041-2/+3
* Move substitution out to a function, prerun(), and replace use of run() withJuli Mallett2002-05-031-85/+78
* Get rid of bogus holder for realloc(3).Juli Mallett2002-05-031-6/+5
* Rewrite the loop that handles substitution in the -I case, and try to makeJuli Mallett2002-05-031-15/+75
* Rename `lflag' to `Lflag' to match the option's case.Juli Mallett2002-05-031-6/+6
* Revert revision 1.22. I incorrectly modified the Berkeley identifiers.Juli Mallett2002-05-031-3/+12
* __COPYRIGHT() and __SCCSID().Juli Mallett2002-05-021-12/+3
* An explicit cast to size_t for an inline integer, since the two are not theJuli Mallett2002-05-021-2/+2
* Make -J a proper flag internal to the code (rather than just check forJuli Mallett2002-05-021-8/+17
* Rework some of the -I support so I can't find a way to make xargs(1) core orJuli Mallett2002-05-021-15/+9
* In the case where we can't open /dev/tty, fall back to -t behaviour.Juli Mallett2002-04-191-9/+7
* Compound two fprintf(3)s into 1 using string concatenation.Juli Mallett2002-04-191-2/+1
* After 3 months...Juli Mallett2002-04-191-39/+134
* ANSIfy: Function declarations and prototypes, use of environ(7).Juli Mallett2002-03-151-9/+8
* Change back to using vfork() now that execvp() is vfork()-safe. If execvp()Dag-Erling Smørgrav2002-03-091-7/+10
* Leave the `copyright' variable exposed, since the main purpose of itMike Barcroft2002-03-071-2/+2
* Fix vendor ID (mostly obtained from Rev 1.1).Mike Barcroft2002-03-051-7/+8
* WARNS=2 fixes, remove register keyword, use __FBSDID()Mark Murray2001-12-111-10/+14
* Add a -J replstr option that allows the user to tell xargs to insertDima Dorfman2001-05-151-5/+29
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* xargs was spliting the input in a very different way from everyone else,Jean-Marc Zucconi1999-05-231-20/+15