sox_ng/test/BUG-331/run

25 lines
301 B
Bash

#! /bin/sh
# Template for "run" scripts
# 14.4.2
# sox_ng-14.5.0
# Debian
# 42b355
rm -f core core.*
${sox:-sox} FPE-wav-950 /tmp/sox.flac remix - norm -3 highpass 22 gain -3 rate 48k norm -3 dither
status=$?
case $status in
0) status=255;;
2) status=0;;
esac
rm -f core core.*
exit $status