mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
8 lines
218 B
Bash
8 lines
218 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Example metadata script that has the behavior required by ezstream.
|
||
|
|
||
|
test -z "${1}" && echo "Ezstream presents"
|
||
|
test x"${1}" = "xartist" && echo "Great Artist"
|
||
|
test x"${1}" = "xtitle" && echo "Great Song"
|