#! /usr/bin/perl # # $Id$ # perlpod(1) source for captive(7) man page # Copyright (C) 2003-2005 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; exactly version 2 of June 1991 is required # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA use vars qw($VERSION); $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; use strict; use warnings; print <<'POD_EOF'; =head1 NAME mount.@PACKAGE@ - B(8) interface for NTFS disk access =head1 SYNOPSIS B {B|B} B [B<-n>] [B<-v>] [B<-o> B] B B<-t> B<@PACKAGE@-ntfs> [B<-n>] [B<-v>] [B<-o> B] {B|B} B =head1 DESCRIPTION B(8) provides B(8) interface to B<@PACKAGE@>(7) library You should never call this command directly - use B(8) instead. B(8) (B<@PACKAGE@> filesystem type) is never used - this command is provided just as a base mount(8) interface to B<@PACKAGE@>(7). You must always use @PACKAGE@-B filesystem type such as B<@PACKAGE@-ntfs>. Other supported filesystem types are: POD_EOF print join ", ",map("B<$_>",(split /:/,'@enable_sbin_mount_fs@')); print <<'POD_EOF'; =head1 OPTIONS =over =item {B|B} Pathname such as B or B. You should refer to the partition name, not the whole device (B is forbidden). B may correspond to B on your system. =item B Existing empty target directory where {B|B} will be mounted. =item B<-n> No effect. The standard functionality of 'do not modify B' is not supported - B is always modified. =item B<-v> No effect. The standard functionality of 'verbose mode' is not supported. =item B<-o> B Custom options passed to B<@PACKAGE@>(7) separated by comma (B<,>). Options without double-dashes (B<-->) will be used for FUSE, please see their description in the section "B" of your local B or the online: L Options prefixed by double-dashes (B<-->) are used for libcaptive, the options list: POD_EOF our $no_libcaptive_options_heading=1; require "../../libcaptive/client/options.pod.pl"; print <<'POD_EOF'; =back =head1 SEE ALSO B<@PACKAGE@>(7) =head1 AUTHOR Jan Kratochvil >, I POD_EOF 1;