Written man pages.
[captive.git] / src / client / lufs / lufs-captivefs.pod.pl.in
1 #! /usr/bin/perl
2
3 # $Id$
4 # perlpod(1) source for lufs-captivefs(7) man page
5 # Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26
27 print <<'POD_EOF';
28 =head1 NAME
29
30 lufs-@PACKAGE@fs - Linux User File System module for NTFS as filesystem
31
32
33 =head1 DESCRIPTION
34
35 B<lufs-@PACKAGE@fs>(7) module for Linux User File System (LUFS) enables
36 B<GNU/Linux> system to access NTFS drives by Microsoft Windows drivers in
37 the most common way of kernel-level filesystem implementation.
38
39 {B<-c CHAN>|B<--channels>=B<CHAN>} option of B<lufsmount>(1) is respected
40 although the final filesystem operations are always processed in single-channel
41 mode. Do not set B<CHAN> to B<1> as it would invoke errors by LUFS kernel
42 driver.
43
44
45 POD_EOF
46 require "../../libcaptive/client/options.pod.pl";
47 print <<'POD_EOF';
48 =head1 SEE ALSO
49
50 B<mount.@PACKAGE@>(8), B<lufsmount>(1), B<@PACKAGE@>(7)
51
52
53 =head1 AUTHOR
54
55 Jan Kratochvil <B<project-@PACKAGE@@jankratochvil.net>>,
56                 I<http://www.jankratochvil.net/>
57 POD_EOF
58 1;