ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. This manual page is associated with the Mac OS X developer tools. The software or headers described may not be present on your Mac OS X installation until you install the developer tools package. This package is available on your Mac OS X installation DVD, and the latest versions can be downloaded from developer.apple.com. For more information about the manual page format, see the manual page for manpages(5). |
SVK(3) User Contributed Perl Documentation SVK(3) NAME SVK - A Distributed Version Control System SYNOPSIS use SVK; use SVK::XD; $xd = SVK::XD->new (depotmap => { '' => '/path/to/repos'}); $svk = SVK->new (xd => $xd, output => \$output); # serialize the $xd object for future use. $svk->ls ('//'); # check $output for its output ... DESCRIPTION "SVK" is the class that loads SVK::Command and invokes them. You can use it in your program to do what you do with the svk command line interface. CONSTRUCTOR Options to "new": xd SVK::XD object that handles depot and checkout copy mapping. output A scalar reference. After command invocation the output will be stored in the scalar. By default the output is not held in any scalar and will be printed to STDOUT. METHODS All methods are autoloaded and deferred to "SVK::Command->invoke". SEE ALSO svk, SVK::XD, SVK::Command. perl v5.8.8 2006-12-28 SVK(3) |
|