Dear developpers team, found attached two small patches [against Branch-5.2]
that add two missing man page for utilities.

If you found any errors, just ping me back, due to the fact they were my first 
man pages.
:-)


-- 

Bruno Friedmann
Ioda-Net Sàrl www.ioda-net.ch

openSUSE Member & Ambassador
GPG KEY : D5C9B751C4653227
irc: tigerfoot
From debe32d1f2b3597536626a24e11a67099b3b34b5 Mon Sep 17 00:00:00 2001
From: Bruno Friedmann <br...@ioda-net.ch>
Date: Sun, 30 Oct 2011 20:11:28 +0100
Subject: [PATCH] Add missing man page for bregex

---
 bacula/manpages/bregex.8 |   60 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 60 insertions(+), 0 deletions(-)
 create mode 100644 bacula/manpages/bregex.8

diff --git a/bacula/manpages/bregex.8 b/bacula/manpages/bregex.8
new file mode 100644
index 0000000..a8ae3f6
--- /dev/null
+++ b/bacula/manpages/bregex.8
@@ -0,0 +1,60 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH BREGEX 8 "30 October 2011" "Kern Sibbald" "Network backup, utilities"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+ bregex \- Bacula's 'regex' engine
+.SH SYNOPSIS
+.B bregex
+.RI [ options ]
+.I -f <data\-file>
+.br
+.SH DESCRIPTION
+This manual page documents briefly the
+.B bregex
+command.
+.br
+This program can be useful for testing regex expressions to be applied against a list of filenames.
+.PP
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
+.\" respectively.
+.SH OPTIONS
+A summary of options is included below.
+.TP
+.B \-?
+Show version and usage of program.
+.BI \-d\  nn
+Set debug level to \fInn\fP.
+.TP
+.BI \-dt
+Print timestamp in debug output
+.TP
+.BI \-f\ <data\-file>
+The data-file is a filename that contains lines of data to be matched (or not) against one or more patterns. When the program is run, it will prompt you for a regular expression pattern, then apply it one line at a time against the data in the file. Each line that matches will be printed preceded by its line number. You will then be prompted again for another pattern. 
+.TP
+.BI \-n 
+Print lines that do not match
+.TP
+.BI \-l
+Suppress lines numbers.
+.SH SEE ALSO
+.BR bwildn (8),
+.br
+.SH AUTHOR
+This manual page was written by Bruno Friedmann
+.nh 
+<bruno@ioda\-net.ch>.
-- 
1.7.7

From 3249411e398ac11dbcd64219733b8f8a876ff3ab Mon Sep 17 00:00:00 2001
From: Bruno Friedmann <br...@ioda-net.ch>
Date: Sun, 30 Oct 2011 20:11:49 +0100
Subject: [PATCH] add missing bwild man page

---
 bacula/manpages/bwild.8 |   65 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)
 create mode 100644 bacula/manpages/bwild.8

diff --git a/bacula/manpages/bwild.8 b/bacula/manpages/bwild.8
new file mode 100644
index 0000000..9f1d9d5
--- /dev/null
+++ b/bacula/manpages/bwild.8
@@ -0,0 +1,65 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH BWILD 8 "30 October 2011" "Kern Sibbald" "Network backup, utilities"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+ bwild \- Bacula's 'wildcard' engine
+.SH SYNOPSIS
+.B bwild
+.RI [ options ]
+.I -f <data\-file>
+.br
+.SH DESCRIPTION
+This manual page documents briefly the
+.B bwild
+command.
+.br
+This is a simple program that will allow you to test wild-card expressions against a file of data.
+.PP
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics, 
+.\" respectively.
+.SH OPTIONS
+A summary of options is included below.
+.TP
+.B \-?
+Show version and usage of program.
+.BI \-d\  nn
+Set debug level to \fInn\fP.
+.TP
+.BI \-dt
+Print timestamp in debug output
+.TP
+.BI \-f\ <data\-file>
+The data-file is a filename that contains lines of data to be matched (or not) against one or more patterns. When the program is run, it will prompt you for a wild-card pattern, then apply it one line at a time against the data in the file. Each line that matches will be printed preceded by its line number. You will then be prompted again for another pattern.
+.br
+Enter an empty line for a pattern to terminate the program. You can print only lines that do not match by using the -n option, and you can suppress printing of line numbers with the -l option. 
+.TP
+.BI \-n 
+Print lines that do not match
+.TP
+.BI \-l
+Suppress lines numbers.
+.TP
+.BI \-i
+use case insensitive match.
+.SH SEE ALSO
+.BR brexegn (8),
+.br
+.SH AUTHOR
+This manual page was written by Bruno Friedmann
+.nh 
+<bruno@ioda\-net.ch>.
-- 
1.7.7

Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Get your Android app more play: Bring it to the BlackBerry PlayBook 
in minutes. BlackBerry App World&#153; now supports Android&#153; Apps 
for the BlackBerry&reg; PlayBook&#153;. Discover just how easy and simple 
it is! http://p.sf.net/sfu/android-dev2dev
_______________________________________________
Bacula-devel mailing list
Bacula-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to