#!/bin/bash

envdir="$3"

if [ -z "${envdir}" ]; then
  echo "missing envdir"
  exit 1
fi

cat "${envdir}/FOO"
echo
