通过pushbullet在你的树莓派上执行一些命令, 这些命令可以是树莓派支持的任何命令。 常见场景, 你不知道树莓派的ip, 可以执行ifconfig 然后稍等一回树莓派就会回复ifconfig 执行结果.
优点:
- 不知道ip时不用打开显示器
- 只要有网络就可以执行命令
- 无需在同一个网络操作
- 查看树莓派的任何状态
- 模拟shell
缺点
- 树莓派需要联网
- 不能替代shell
git clone https://github.com/jackeyGao/RaspberryPushCommand
cd RaspberryPushCommand/
sudo pip install -r requirements.txt
sudo python setup.py install
start
listener -k <PushBullet API-KEY>
exit
ps -ef | grep listener | awk '{print $2}' | xargs -n 1 kill
The MIT License (MIT)
Copyright (c) 2015 JackeyGao
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

