I need to have the ability to create user accounts on my Linux (Fedora 10) and automatically assign a password via a bash script(or otherwise, if need be).
It\'s eas
You could also use chpasswd:
echo username:new_password | chpasswd
so, you change password for user username to new_password.
username
new_password