I have a script I use to change passwords on my MAC's, what I'd really like to do is have the script check the password to see if it is different before attempting to change it.
Page 1 / 1
This should do what you are looking for:
#!/bin/sh
PASSWORDCHECK=$(/usr/bin/dscl /Local/Default -authonly $USERNAME $PASSWORD)
if [ "$PASSWORDCHECK" == "" ]; then
echo "Password is correct"
else
echo "Lets reset"
fi
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.