#!/bin/bash
#

for file in *.EVT; do
    echo "Processing file $file"
    bedsDecode -d $file > $file.OUT
done
