#!/bin/bash

### Like pcm-eas, but just shoves its input (named in $1) through eas-detect,
### and logs to $2.  This wrapper exists so it can be passed as $3 to
### scan-and-notify-on-eas for debugging, using a precomputed corpus.
### Any args after the first two will be handed to eas-detect.

### Returns eas-detect's status.

eas-detect ${*:3} < $1 >> $2 2>&1

# End of file.
