2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00
fhem-mirror/fhem/contrib/statistics/data/mkpasswd.pl
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;