I am not a “wifi” guy, but it is prompting you for more input because part of your last command had special characters in the password and lack of escaping or quoting caused those characters to be interpreted rather than being passed literally. You used a screenshot instead of copy and paste, so I am somewhat guessing the following change would be useful:
- Don’t use
6e5MgwF3[|5gCR"
- Do use either:
-
-
'6e5MgwF3[|5gCR"'
# (single quote)
-
-
6e5MgwF3\[\|5gCR\"
# [backslash to force shell characters to be taken literally]
I do not know if the backslashes are correct, but you can use an echo to see what is really passed:
-
echo 6e5MgwF3[|5gCR"
# (original)
-
echo '6e5MgwF3[|5gCR"'
# (quoted)
-
echo 6e5MgwF3\[\|5gCR\"
# (backslash escape)