mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
e39a9b93e9
git-svn-id: https://svn.fhem.de/fhem/trunk@23152 2b470e98-0d58-463d-a4d8-8e2adae1ed80
22 lines
323 B
Perl
22 lines
323 B
Perl
# $Id: 98_svn.pm 11079 2016-03-18 12:50:58Z betateilchen $
|
|
#
|
|
|
|
package main;
|
|
use strict;
|
|
use warnings;
|
|
|
|
sub CommandSvn;
|
|
|
|
sub svn_Initialize($$) {
|
|
my %hash = ( Fn => "CommandSvn", Hlp => "[<command>],execute svn commands)" );
|
|
$cmds{svn} = \%hash;
|
|
}
|
|
|
|
sub CommandSvn {
|
|
my ($cl, $arg) = @_;
|
|
return qx(svn $arg);
|
|
}
|
|
|
|
|
|
1;
|