Optionally, learn a bit of the regular expression language - regex (this may take a while) and you can use the one crafted below for a 4 character length password. Here’s how to retrieve the configuration, edit that file, and then load it into the system:
pwpolicy getaccountpolicies | awk 'NR>1' > ~/Desktop/file.plist
nano ~/Desktop/file.plist
or vi ~/Desktop/file.plist
policyAttributePassword matches '^$|.{4,}+'
sudo pwpolicy setaccountpolicies ~/Desktop/file.plist
passwd
^$|.{1,}+
: Any password. (Not the best Regex, but I didn’t want to mess around with it too much.)You can also use the much more straightforward command:
pwpolicy -clearaccountpolicies
© 2020 Ethereal Tech. All Right Reserved.