#!/bin/sh
# this file is in the public domain

execs=$(grep '^// exec:' $2/${1%fs}i | cut -f3- -d' ')

if [ -z "$execs" ]
then
    cat
else
    eval $execs
fi
