使用终端登录凭据打开网站

使用终端登录凭据打开网站

在我的.bash_aliases文件中,我有一些可以在其中打开浏览器会话的别名:

alias thisismyalias='xdg-open https://somesite/login'

但问题是它不记得我的凭据,而且我没有“记住我”选项。显然,我可以使用以下命令欺骗浏览器,让它认为我填写了凭据:

xdg-open https://user:password@somesite/login

但这会导致弹出一个包含以下内容的框:

You are about to log in to the site “somesite” with the username “user”, 
but the website does not require authentication. 
This may be an attempt to trick you. 
Is “somesite” the site you want to visit?

我确认这确实是我想要访问的网站,但我的凭证尚未填写。有没有办法将我的凭证传递给我的浏览器?

相关内容