#!/bin/bash

### Given a file newly detected by notice-new-files, decide which
### handler(s), if any, should be called to process it.

input=$1

case $input in
  *.nuv | *.mpg )
    scan-and-notify-on-eas $input
    ;;
  * )
    # If unrecognized, just ignore it.
    ;;
esac

# End of file.
