fix syntax
This commit is contained in:
parent
dd65b642dc
commit
5b74042932
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh -x
|
||||||
|
|
||||||
die() { return 1 || exit 1 }
|
die() { return 1 || exit 1; }
|
||||||
|
|
||||||
if ! which curl >/dev/null 2>&1; then
|
if ! which curl >/dev/null 2>&1; then
|
||||||
printf "1n574ll curl, 5700p1d!\n"
|
printf "1n574ll curl, 5700p1d!\n"
|
||||||
@ -9,10 +9,8 @@ fi
|
|||||||
|
|
||||||
ZELDA="http://www.trinity.moe/zelda.wav"
|
ZELDA="http://www.trinity.moe/zelda.wav"
|
||||||
|
|
||||||
if which aplay >/dev/null 2>&1; then
|
if which aplay >/dev/null 2>&1; then curl "$ZELDA" | aplay
|
||||||
curl "$ZELDA" | aplay
|
elif ls /dev/dsp >/dev/null 2>&1; then curl "$ZELDA" >/dev/dsp
|
||||||
elif ls /dev/dsp >/dev/null 2>&1; then
|
|
||||||
curl "$ZELDA" >/dev/dsp
|
|
||||||
else
|
else
|
||||||
printf "Unknown sound device. Sorry!\n"
|
printf "Unknown sound device. Sorry!\n"
|
||||||
die
|
die
|
||||||
|
Loading…
Reference in New Issue
Block a user