|
给我舍友陈明的。
他一开机就唱《猪》
关机也要唱。
- #!/bin/bash
- 192.168.100.1是我给他的ip
- #chenming
- IP="192.168.100.1"
- while true
- do
- while true
- do
- if ping -w 2 -c2 -q $IP >/dev/null ; then
- mpg123 -q /mnt/pub/Music/other/zhu.mp3
- break
- fi
- sleep 10
- done
- while true
- do
- if ! ping -w 2 -c2 -q $IP >/dev/null ; then
- mpg123 -q /mnt/pub/Music/other/zhu.mp3
- break
- fi
- sleep 10
- done
- done
复制代码 |
|