2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-07 16:59:18 +00:00
rudolfkoenig feb98118de contrib/statistics: missing stuff added
git-svn-id: https://svn.fhem.de/fhem/trunk@8261 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2015-03-22 12:27:02 +00:00

8 lines
120 B
Perl
Executable File

#!/usr/bin/perl
use strict;
my $user = $ARGV[0];
my $pass = $ARGV[1];
print "$user:".crypt($pass,"Fhem")."\n";
exit 0;