9 lines
188 B
Bash
9 lines
188 B
Bash
|
|
#!/usr/bin/sh
|
||
|
|
while true ; do
|
||
|
|
ls -l /opt/shred.ing/js/title.json;
|
||
|
|
#ps -f 75362;
|
||
|
|
systemctl status icecast-title.service
|
||
|
|
cat /opt/shred.ing/js/title.json;
|
||
|
|
sleep 10;
|
||
|
|
done
|