forked from sox_ng/sox_ng
12 lines
158 B
Bash
12 lines
158 B
Bash
#! /bin/sh
|
|
|
|
# Test reading of AIFC ULAW encoding
|
|
|
|
rm -f core core.* out.wav
|
|
|
|
${sox:-sox} ulaw.aifc out.wav
|
|
status=$?
|
|
|
|
rm -f core core.* out.wav
|
|
|
|
exit $status
|