diff --git a/fhem/contrib/98_svn.pm b/fhem/contrib/98_svn.pm new file mode 100644 index 000000000..0514bf487 --- /dev/null +++ b/fhem/contrib/98_svn.pm @@ -0,0 +1,20 @@ +# $Id$ +# +package main; +use strict; +use warnings; + +sub CommandSvn; + +sub svn_Initialize($$) { + my %hash = ( Fn => "CommandSvn", Hlp => "[],execute svn commands)" ); + $cmds{svn} = \%hash; +} + +sub CommandSvn { + my ($cl, $arg) = @_; + return qx(svn $arg); +} + + +1;