summaryrefslogtreecommitdiff
path: root/docs/busybox.pod
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.pod
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.pod')
-rw-r--r--docs/busybox.pod28
1 files changed, 24 insertions, 4 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod
index e12c8243c..5caf1de7d 100644
--- a/docs/busybox.pod
+++ b/docs/busybox.pod
@@ -64,8 +64,8 @@ mkfifo, mkfs.minix, mknod, mkswap, mktemp, more, mount, mt, mv, nc, nslookup,
64ping, poweroff, printf, ps, pwd, rdate, reboot, renice, reset, rm, rmdir, 64ping, poweroff, printf, ps, pwd, rdate, reboot, renice, reset, rm, rmdir,
65rmmod, sed, setkeycodes, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail, 65rmmod, sed, setkeycodes, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail,
66tar, tee, telnet, test, touch, tr, true, tty, umount, uname, uniq, unix2dos, 66tar, tee, telnet, test, touch, tr, true, tty, umount, uname, uniq, unix2dos,
67unrpm, update, uptime, usleep, uudecode, uuencode, wc, which, whoami, yes, 67unrpm, update, uptime, usleep, uudecode, uuencode, wc, which, whoami, xargs,
68zcat, [ 68yes, zcat, [
69 69
70------------------------------- 70-------------------------------
71 71
@@ -1105,7 +1105,7 @@ Example:
1105 1105
1106=item ls 1106=item ls
1107 1107
1108Usage: ls [B<-1acdelnpuxACFR>] [filenames...] 1108Usage: ls [B<-1acdelnpuxACFLR>] [filenames...]
1109 1109
1110Options: 1110Options:
1111 1111
@@ -1124,6 +1124,7 @@ Options:
1124 -C list entries by columns 1124 -C list entries by columns
1125 -F append indicator (one of */=@|) to entries 1125 -F append indicator (one of */=@|) to entries
1126 -R list subdirectories recursively 1126 -R list subdirectories recursively
1127 -L list entries pointed to by symbolic links
1127 1128
1128------------------------------- 1129-------------------------------
1129 1130
@@ -2080,6 +2081,25 @@ Example:
2080 2081
2081------------------------------- 2082-------------------------------
2082 2083
2084=item xargs
2085
2086Usage: xargs [OPTIONS] [COMMAND] [ARGS...]
2087
2088Executes COMMAND on every item given by standard input.
2089
2090Options:
2091
2092 -t Print the command just before it is run
2093 -l LEN Use LEN as maximum line length (default 490, max 1023)
2094 -e ENDING Append ENDING to the command before executing it.
2095
2096Example:
2097
2098 $ ls | xargs gzip
2099 $ find . -name '*.c' -print | xargs rm
2100
2101-------------------------------
2102
2083=item yes 2103=item yes
2084 2104
2085Usage: yes [OPTION]... [STRING]... 2105Usage: yes [OPTION]... [STRING]...
@@ -2182,4 +2202,4 @@ Enrique Zanardi <ezanardi@ull.es>
2182 2202
2183=cut 2203=cut
2184 2204
2185# $Id: busybox.pod,v 1.70 2000/09/21 02:06:35 andersen Exp $ 2205# $Id: busybox.pod,v 1.71 2000/09/22 20:22:27 andersen Exp $