diff options
author | Dale Mellor <dale@rdmp.org> | 2010-06-12 22:39:20 +0100 |
---|---|---|
committer | Dale Mellor <dale@rdmp.org> | 2010-06-12 22:39:20 +0100 |
commit | 9fe5fddf30cb159e959295d4ec979678b0130a9c (patch) | |
tree | 758a4855fa4b028caf833ce25284bddc87722dc1 | |
parent | 0cbb22fd196a6c232eff37acf9e16f1299aa0252 (diff) | |
download | mcron-9fe5fddf30cb159e959295d4ec979678b0130a9c.tar.gz mcron-9fe5fddf30cb159e959295d4ec979678b0130a9c.tar.bz2 mcron-9fe5fddf30cb159e959295d4ec979678b0130a9c.zip |
Added a simple man page using help2man (the generation is _not_ automatic through the makefile).
-rw-r--r-- | makefile.am | 3 | ||||
-rw-r--r-- | mcron.1 | 50 |
2 files changed, 52 insertions, 1 deletions
diff --git a/makefile.am b/makefile.am index e4c441f..9f9b59d 100644 --- a/makefile.am +++ b/makefile.am @@ -36,6 +36,8 @@ AM_CFLAGS = @GUILE_CFLAGS@ -DGUILE_LOAD_PATH=\"$(datadir)\" info_TEXINFOS = mcron.texinfo +dist_man1_MANS = mcron.1 + bin_PROGRAMS = mcron mcron_SOURCES = mcron.c @@ -86,4 +88,3 @@ uninstall-hook: if [ "`id -u`" -eq "0" ]; then \ rm -f $(fpp){cron,crontab}$(EXEEXT); \ fi - @@ -0,0 +1,50 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.37.1. +.TH MCRON "1" "June 2010" "mcron " "User Commands" +.SH NAME +mcron \- manual page for mcron +.SH SYNOPSIS +.B mcron +[\fIOPTIONS\fR] [\fIFILES\fR] +.SH DESCRIPTION +Run an mcron process according to the specifications in the FILES (`\-' for +standard input), or use all the files in ~/.cron with .guile or .vixie +extensions. +.TP +\fB\-v\fR, \fB\-\-version\fR +Display version +.TP +\fB\-h\fR, \fB\-\-help\fR +Display this help message +.TP +\fB\-sN\fR, \fB\-\-schedule[\fR=\fI]N\fR +Display the next N jobs that will be run by mcron +.TP +\fB\-d\fR, \fB\-\-daemon\fR +Immediately detach the program from the terminal and +run as a daemon process +.TP +\fB\-i\fR, \fB\-\-stdin=\fR(guile|vixie) Format of data passed as standard input or +file arguments (default guile) +.SH AUTHOR +Written by Dale Mellor +.SH "REPORTING BUGS" +Report bugs to dale_mellor@users.sourceforge.net. +.PP +mcron (mcron 1.0.4) +.SH COPYRIGHT +Copyright \(co 2003, 2006 Dale Mellor +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +.SH "SEE ALSO" +The full documentation for +.B mcron +is maintained as a Texinfo manual. If the +.B info +and +.B mcron +programs are properly installed at your site, the command +.IP +.B info mcron +.PP +should give you access to the complete manual. |