diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-31 10:24:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-31 10:24:36 +0000 |
commit | 6cf47a79acfef8dbe4e651560f59200978b656b1 (patch) | |
tree | 3ae009b33f74d131da1747d558ab357511136f7d /docs | |
parent | 2bc4dec7a15998fa37c03005a9612c7f22df4f7a (diff) | |
download | busybox-w32-6cf47a79acfef8dbe4e651560f59200978b656b1.tar.gz busybox-w32-6cf47a79acfef8dbe4e651560f59200978b656b1.tar.bz2 busybox-w32-6cf47a79acfef8dbe4e651560f59200978b656b1.zip |
Run parts applet by Emanuele Aina <faina.mail@tiscalinet.it>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/busybox.sgml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/docs/busybox.sgml b/docs/busybox.sgml index 2d372506b..34559dab4 100644 --- a/docs/busybox.sgml +++ b/docs/busybox.sgml | |||
@@ -144,7 +144,7 @@ | |||
144 | loadacm, loadfont, loadkmap, logger, logname, ls, lsmod, | 144 | loadacm, loadfont, loadkmap, logger, logname, ls, lsmod, |
145 | makedevs, mkdir, mkfifo, mkfs.minix, mknod, mkswap, mktemp, | 145 | makedevs, mkdir, mkfifo, mkfs.minix, mknod, mkswap, mktemp, |
146 | more, mount, mt, mv, nc, nslookup, ping, poweroff, printf, ps, | 146 | more, mount, mt, mv, nc, nslookup, ping, poweroff, printf, ps, |
147 | pwd, reboot, renice, reset, rm, rmdir, rmmod, sed, setkeycodes, sh, sleep, | 147 | pwd, reboot, renice, reset, rm, rmdir, rmmod, run-parts, sed, setkeycodes, sh, sleep, |
148 | sort, swapoff, swapon, sync, syslogd, tail, tar, tee, telnet, | 148 | sort, swapoff, swapon, sync, syslogd, tail, tar, tee, telnet, |
149 | test, touch, tr, true, tty, umount, uname, uniq, update, | 149 | test, touch, tr, true, tty, umount, uname, uniq, update, |
150 | uptime, usleep, uudecode, uuencode, wc, which, whoami, yes, | 150 | uptime, usleep, uudecode, uuencode, wc, which, whoami, yes, |
@@ -2799,6 +2799,33 @@ | |||
2799 | </para> | 2799 | </para> |
2800 | </sect1> | 2800 | </sect1> |
2801 | 2801 | ||
2802 | <sect1 id="run-parts"> | ||
2803 | <title>run-parts</title> | ||
2804 | |||
2805 | <para> | ||
2806 | Usage: run-parts [-t] [-a ARG] [-u MASK] DIRECTORY | ||
2807 | </para> | ||
2808 | |||
2809 | <para> | ||
2810 | Run a bunch of scripts in a directory. | ||
2811 | </para> | ||
2812 | |||
2813 | <para> | ||
2814 | Options: | ||
2815 | </para> | ||
2816 | |||
2817 | <para> | ||
2818 | <screen> | ||
2819 | -t Test only. It only print the file to be executed, | ||
2820 | without execute them. | ||
2821 | -a ARG Pass ARG as an a argument to the programs executed. | ||
2822 | -u MASK Set the umask to MASK before executing the programs. | ||
2823 | </screen> | ||
2824 | </para> | ||
2825 | </sect1> | ||
2826 | |||
2827 | |||
2828 | |||
2802 | <sect1 id="sed"> | 2829 | <sect1 id="sed"> |
2803 | <title>sed</title> | 2830 | <title>sed</title> |
2804 | 2831 | ||