windows平台
右键打开记事本内容如下:
@echo off set "user=你的ID" set "pw=你的密码" start "163邮箱登录中....."
"https://reg.163.com/logins.jsp?username=%user%&password=%pw%&url=http://fm163.163.com/coremail/fcg/ntesdoor2"
|
保存时候将文件名后缀名改为.bat,然后双击即可:)
linux平台
root@xuanfei-desktop:~/sh# vi mymail.sh //编辑shell脚本
#!/bin/bash eoch "163邮箱快速登录器启动中..........." user="你的ID" pw="你的密码" firefox http://reg.163.com/logins.jsp?username=$user"&"password=$pw"&"url=http://fm163.163.com/coremail/fcg/ntesdoor2 |
root@xuanfei-desktop:~/sh# sh mymail.sh //运行shell脚本即可实现 :)