#! /usr/bin/env bash
#
# Given a filename, output the contents of the file and return 0.  Upon error,
# return nonzero.
#
# cat-file <file>

[ -f "$1" ] && cat "$1"

