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

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

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