I'd like to be able to change a user's password using a Perl script. I've tried:
my $user = "test";
my $pass = "testing";
open(DATA, "| passwd $user") || die "failed";
print DATA $pass;
sleep(1);
print DATA $pass;
close(DATA);
and it never goes through.
I have also tried `echo -e "$pass\n$pass" | passwd $user" however, I receive a password conversion failure error.
Any help would be appreciated