#! /bin/bash

source ./include
source ./config

DIR=${1:-$DIR}
DIR=${DIR:-.}

echo Config: CMD = \"$CMD\"\; FIELD = \"$FIELD\"\; DELIM = \"$DELIM\"
for x in $(ls $DIR); do
    my-format $x
done

exit 0
