summaryrefslogtreecommitdiff
path: root/docs/busybox.sgml
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-22 20:22:28 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-22 20:22:28 +0000
commit5b17693f0a07d0fa8af08e3c0d6b43c7b826a13d (patch)
treeba51e2cba249df7bf64b5826ebbbe654a4d24250 /docs/busybox.sgml
parentebc0dd7a8a553ee1a3b4293975b02aa1578cac07 (diff)
downloadbusybox-w32-5b17693f0a07d0fa8af08e3c0d6b43c7b826a13d.tar.gz
busybox-w32-5b17693f0a07d0fa8af08e3c0d6b43c7b826a13d.tar.bz2
busybox-w32-5b17693f0a07d0fa8af08e3c0d6b43c7b826a13d.zip
Use minix xargs instead, and update docs accordingly
-Erik
Diffstat (limited to 'docs/busybox.sgml')
-rw-r--r--docs/busybox.sgml37
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/busybox.sgml b/docs/busybox.sgml
index e8a91fa05..e213ca1b2 100644
--- a/docs/busybox.sgml
+++ b/docs/busybox.sgml
@@ -1922,6 +1922,7 @@
1922 -A Do not list implied . and .. 1922 -A Do not list implied . and ..
1923 -C List entries by columns 1923 -C List entries by columns
1924 -F Append indicator (one of */=@|) to entries 1924 -F Append indicator (one of */=@|) to entries
1925 -L list entries pointed to by symbolic links
1925 -R List subdirectories recursively 1926 -R List subdirectories recursively
1926 </screen> 1927 </screen>
1927 </para> 1928 </para>
@@ -3659,6 +3660,42 @@
3659 </para> 3660 </para>
3660 </sect1> 3661 </sect1>
3661 3662
3663 <sect1 id="xargs">
3664 <title>xargs</title>
3665
3666 <para>
3667 Usage: xargs [OPTIONS] [COMMAND] [ARGS...]
3668 </para>
3669
3670 <para>
3671 Executes COMMAND on every item given by standard input.
3672 </para>
3673
3674 <para>
3675 Options:
3676 </para>
3677
3678 <para>
3679 <screen>
3680 -t Print the command just before it is run
3681 -l LEN Use LEN as maximum line length (default 490, max 1023)
3682 -e ENDING Append ENDING to the command before executing it.
3683 </screen>
3684 </para>
3685
3686
3687 <para>
3688 Example:
3689 </para>
3690
3691 <para>
3692 <screen>
3693 $ ls | xargs gzip
3694 $ find . -name '*.c' -print | xargs rm
3695 </screen>
3696 </para>
3697 </sect1>
3698
3662 <sect1 id="yes"> 3699 <sect1 id="yes">
3663 <title>yes</title> 3700 <title>yes</title>
3664 3701