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.
Solved
How can i "TEST" as password ?
Best answer by DBrowning
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"
fiEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.
