2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00
fhem-mirror/fhem/contrib/betateilchen/98_svn.pm

22 lines
323 B
Perl
Raw Normal View History

# $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;