diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-09-20 19:22:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-09-20 19:22:26 +0000 |
commit | cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9 (patch) | |
tree | 11ccadd6495c9e4fbd920896e94935551af4c14d /docs | |
parent | 0cccdfaf363171c9f0761fbdb2028db0ea73e6b5 (diff) |
Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.
-Erik
Diffstat (limited to 'docs')
-rw-r--r-- | docs/busybox.pod | 47 | ||||
-rw-r--r-- | docs/busybox.sgml | 42 |
2 files changed, 76 insertions, 13 deletions
diff --git a/docs/busybox.pod b/docs/busybox.pod index fed8b57a6..5fd15cab5 100644 --- a/docs/busybox.pod +++ b/docs/busybox.pod @@ -55,16 +55,17 @@ terse runtime description of their behavior. Currently defined functions include: -ar, basename, cat, chgrp, chmod, chown, chroot, chvt, clear, cp, cut, date, -dc, dd, deallocvt, df, dirname, dmesg, du, dumpkmap, dutmp, echo, false, fbset, -fdflush, find, free, freeramdisk, fsck.minix, getopt, grep, gunzip, gzip, halt, -head, hostid, hostname, id, init, insmod, kill, killall, length, ln, -loadacm, loadfont, loadkmap, logger, logname, ls, lsmod, makedevs, mkdir, -mkfifo, mkfs.minix, mknod, mkswap, mktemp, more, mount, mt, mv, nc, -nslookup, ping, poweroff, printf, ps, pwd, rdate, reboot, renice, reset, rm, rmdir, rmmod, sed, -setkeycodes, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail, -tar, tee, telnet, test, touch, tr, true, tty, umount, uname, uniq, update, -uptime, usleep, uudecode, uuencode, wc, which, whoami, yes, zcat, [ +ar, basename, cat, chgrp, chmod, chown, chroot, chvt, clear, cp, cut, date, dc, +dd, deallocvt, df, dirname, dmesg, dos2unix, du, dumpkmap, dutmp, echo, false, +fbset, fdflush, find, free, freeramdisk, fsck.minix, getopt, grep, gunzip, +gzip, halt, head, hostid, hostname, id, init, insmod, kill, killall, length, +ln, loadacm, loadfont, loadkmap, logger, logname, ls, lsmod, makedevs, mkdir, +mkfifo, mkfs.minix, mknod, mkswap, mktemp, more, mount, mt, mv, nc, nslookup, +ping, poweroff, printf, ps, pwd, rdate, reboot, renice, reset, rm, rmdir, +rmmod, sed, setkeycodes, sh, sleep, sort, swapoff, swapon, sync, syslogd, tail, +tar, tee, telnet, test, touch, tr, true, tty, umount, uname, uniq, unix2dos, +unrpm, update, uptime, usleep, uudecode, uuencode, wc, which, whoami, yes, +zcat, [ ------------------------------- @@ -412,6 +413,14 @@ Print or controls the kernel ring buffer. ------------------------------- +=item dos2unix + +Usage: dos2unix < dosfile > unixfile + +Converts a text file from dos format to unix format. + +------------------------------- + =item du Usage: du [OPTION]... [FILE]... @@ -1929,6 +1938,22 @@ Example: ------------------------------- +=item unix2dos + +Usage: unix2dos < unixfile > dosfile + +Converts a text file from unix format to dos format. + +------------------------------- + +=item unrpm + +Usage: unrpm < package.rpm | gzip -d | cpio -idmuv + +Extracts an rpm archive. + +------------------------------- + =item update Usage: update [options] @@ -2157,4 +2182,4 @@ Enrique Zanardi <ezanardi@ull.es> =cut -# $Id: busybox.pod,v 1.68 2000/09/15 17:24:13 proski Exp $ +# $Id: busybox.pod,v 1.69 2000/09/20 19:22:26 andersen Exp $ diff --git a/docs/busybox.sgml b/docs/busybox.sgml index f4161f59e..e8a91fa05 100644 --- a/docs/busybox.sgml +++ b/docs/busybox.sgml @@ -1,5 +1,4 @@ -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [ -]> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN" [ ]> <book id="BusyBoxDocumentation"> <bookinfo> <title>BusyBox - The Swiss Army Knife of Embedded Linux</title> @@ -746,6 +745,19 @@ </para> </sect1> + <sect1 id="dos2unix"> + <title>dos2unix</title> + + <para> + Usage: dos2unix < dosfile > unixfile + </para> + + <para> + Converts a text file from dos format to unix format. + </para> + + </sect1> + <sect1 id="du"> <title>du</title> @@ -3394,6 +3406,32 @@ </screen> </para> </sect1> + + <sect1 id="unix2dos"> + <title>unix2dos</title> + + <para> + Usage: unix2dos < unixfile > dosfile + </para> + + <para> + Converts a text file from unix format to dos format. + </para> + + </sect1> + + <sect1 id="unrpm"> + <titleunrpmuniq</title> + + <para> + Usage: unrpm < package.rpm | gzip -d | cpio -idmuv + </para> + + <para> + Extracts an rpm archive. + </para> + + </sect1> <sect1 id="update"> <title>update</title> |