Codebase list music123 / debian/latest wavgzplay.sh
debian/latest

Tree @debian/latest (Download .tar.gz)

wavgzplay.sh @debian/latestraw · history · blame

1
2
3
4
5
#!/bin/sh
FILENAME=`tempfile -s .wav`
zcat "$1" > $FILENAME
music123 $FILENAME
rm $FILENAME