4 lines
123 B
Bash
4 lines
123 B
Bash
|
|
#!/usr/bin/bash
|
||
|
|
|
||
|
|
tail -1 /var/log/icecast2/playlist.log | cut -d \| -f 4 | perl -nle 'printf qq({ "title" : "%s" }\n), $_'
|