Purpose: launching a browser and automatic authorization to a contact when launching a script.
Problem: the goal is not achieved (authorization does not occur)
#!/bin/bash login='my_email@mail.ru'; pass='my_password'; firefox --private "https://login.vk.com/?act=login&email=$login&pass=$pass" & echo "all done!"
What is done wrong?