mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
9 lines
191 B
Bash
9 lines
191 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test -z "${1}" && echo " songinfo "
|
||
|
test x"${1}" = "xartist" && echo " artist "
|
||
|
test x"${1}" = "xtitle" && echo " title "
|
||
|
test x"${1}" = "xalbum" && echo " album "
|
||
|
|
||
|
exit 0
|