I have a string variable with a space separating an email address and a password. For example:
one_variable="foo@yahoo.com password"
I would like to separate the email address from the password and create two strings from it, like this:
email_variable="foo@yahoo.com"
password_variable="password"
How do I achieve this?