aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-13 05:36:13 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-13 05:36:13 +0000
commit73c8c9cf9a61286a109a8785b8e4782828d6fe99 (patch)
tree9a06b75f8564759dcf64cbc492026012c8986342 /docs
parent23dea9b712daf0f29bdbb0e6adce1d697f53cefc (diff)
downloadbusybox-w32-73c8c9cf9a61286a109a8785b8e4782828d6fe99.tar.gz
busybox-w32-73c8c9cf9a61286a109a8785b8e4782828d6fe99.tar.bz2
busybox-w32-73c8c9cf9a61286a109a8785b8e4782828d6fe99.zip
More doc updates
-Erik
Diffstat (limited to 'docs')
-rw-r--r--docs/busybox.pod61
1 files changed, 51 insertions, 10 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod
index 408bbfa72..d6b475c99 100644
--- a/docs/busybox.pod
+++ b/docs/busybox.pod
@@ -55,13 +55,13 @@ terse runtime description of their behavior.
55 55
56Currently defined functions include: 56Currently defined functions include:
57 57
58basename, cat, chgrp, chmod, chown, chroot, clear, chvt, cp, date, dd, df, 58basename, cat, chgrp, chmod, chown, chroot, clear, chvt, cp, cut, date, dd, df,
59dirname, dmesg, du, dutmp, echo, false, fbset, fdflush, find, free, 59dirname, dmesg, du, dutmp, echo, false, fbset, fdflush, find, free,
60freeramdisk, deallocvt, fsck.minix, grep, gunzip, gzip, halt, head, hostid, 60freeramdisk, deallocvt, fsck.minix, grep, gunzip, gzip, halt, head, hostid,
61hostname, init, kill, killall, length, ln, loadacm, loadfont, loadkmap, logger, 61hostname, id, init, kill, killall, length, ln, loadacm, loadfont, loadkmap,
62logname, ls, lsmod, makedevs, math, mkdir, mkfifo, mkfs.minix, mknod, mkswap, 62logger, logname, ls, lsmod, makedevs, math, mkdir, mkfifo, mkfs.minix, mknod,
63mktemp, mnc, more, mount, mt, mv, nslookup, ping, poweroff, printf, ps, pwd, 63mkswap, mktemp, nc, more, mount, mt, mv, nslookup, ping, poweroff, printf, ps,
64reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync, 64pwd, reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync,
65syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount, 65syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount,
66uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [ 66uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [
67 67
@@ -251,6 +251,30 @@ Options:
251 251
252------------------------------- 252-------------------------------
253 253
254=item cut
255
256Usage: cut [OPTION]... [FILE]...
257
258Prints selected fields from each input FILE to standard output.
259
260Options:
261
262 -b LIST Output only bytes from LIST
263 -c LIST Output only characters from LIST
264 -d DELIM Use DELIM instead of tab as the field delimiter
265 -f N Print only these fields
266 -n Ignored
267
268Example:
269
270 $ echo "Hello world" | cut -f 1 -d ' '
271 Hello
272 $ echo "Hello world" | cut -f 2 -d ' '
273 world
274
275
276-------------------------------
277
254=item date 278=item date
255 279
256Usage: date [OPTION]... [+FORMAT] 280Usage: date [OPTION]... [+FORMAT]
@@ -665,6 +689,23 @@ Example:
665 689
666------------------------------- 690-------------------------------
667 691
692=item id
693
694Print information for USERNAME or the current user
695
696Options:
697
698 -g prints only the group ID
699 -u prints only the user ID
700 -r prints the real user ID instead of the effective ID (with -ug)
701
702Example:
703
704 $ id
705 uid=1000(andersen) gid=1000(andersen)
706
707-------------------------------
708
668=item init 709=item init
669 710
670Usage: init 711Usage: init
@@ -1076,15 +1117,15 @@ Example:
1076 1117
1077------------------------------- 1118-------------------------------
1078 1119
1079=item mnc 1120=item nc
1080 1121
1081Usage: mnc [IP] [port] 1122Usage: nc [IP] [port]
1082 1123
1083mini-netcat opens a pipe to IP:port 1124Netcat opens a pipe to IP:port
1084 1125
1085Example: 1126Example:
1086 1127
1087 $ mnc foobar.somedomain.com 25 1128 $ nc foobar.somedomain.com 25
1088 220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600 1129 220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600
1089 help 1130 help
1090 214-Commands supported: 1131 214-Commands supported:
@@ -1881,4 +1922,4 @@ Enrique Zanardi <ezanardi@ull.es>
1881 1922
1882=cut 1923=cut
1883 1924
1884# $Id: busybox.pod,v 1.30 2000/05/12 19:41:47 erik Exp $ 1925# $Id: busybox.pod,v 1.31 2000/05/13 05:36:13 erik Exp $