mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
ca4060f94c
git-svn-id: https://svn.xiph.org/trunk/ezstream@16523 0101bb08-14d6-0310-b084-bc0e0c8e3800
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Minimalist 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"
|