Skip to content

Instantly share code, notes, and snippets.

@ma6174
Last active August 12, 2018 00:00
Show Gist options
  • Select an option

  • Save ma6174/7249298 to your computer and use it in GitHub Desktop.

Select an option

Save ma6174/7249298 to your computer and use it in GitHub Desktop.
当舍友手机关机或静音的时候,就用这个叫门吧,手机连上路由器自动报警
#!/bin/bash
while true
do
data=`curl "http://admin:[email protected]/userRpm/SystemStatisticRpm.htm" | grep "90-C1-15-XX-XX-XX"|cut -d"," -f7`
if [ $data -ne 0 ]
then
notify-send 快开门
mpg321 /opt/ring.mp3
break
fi
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment