#!/bin/sh
#
# test -f option
#
set +e
mp3guessenc -f debian/flush.mp3 > f.tmp
set -e
#
fgrep "48 kbps" f.tmp
fgrep 550 f.tmp
#
rm f.tmp

