我正尝试从following resource向Chrome PC中的Raspberry Pi发送推送通知。
输入以下命令后,在询问主机密码时应该输入什么?
sudo apt-get install curl
curl -u [type your access code here] https://api.pushbullet.com/v2/pushes/ -d type=note -d title="Raspberry Pi" body="Hello World!"
Enter password for host:
答案 0 :(得分:0)
尝试使用提升权限启动命令
sudo curl -u [type your access code here] https://api.pushbullet.com/v2/pushes/ -d type=note -d title="Raspberry Pi" body="Hello World!"`
或者你应该将它写入.sh文件,即shell脚本,并按照你提供的resource中所述的提升权限运行它。