#! /usr/bin/perl # # $Id$ # perlpod(1) source for captive-cmdline(1) man page # Copyright (C) 2003 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 @PACKAGE@-sandbox-server - Security+safety wrapper for NTFS disk access =head1 SYNOPSIS B<@PACKAGE@-sandbox-server> =head1 DESCRIPTION Program implementing separation of emulated I kernel environment from the rest of I system. Your system gets protected by B(2), B(2), B(2) and B(2) UNIX security features against malicious Microsoft Windows drivers. Use this program as argument of B<--sandbox-server> option of B<@PACKAGE@>(7). Do not use this option/program during B<@PACKAGE@>(7) debugging. =head1 OPTIONS No options are permitted for this command - it will display its I connection properties on its standard output. =head1 SEE ALSO B<@PACKAGE@>(7), B<@PACKAGE@-cmdline>(1), B(8) =head1 AUTHOR Jan Kratochvil >, I POD_EOF 1;