#!/usr/bin/bash

if [ "$#" -lt 1 ] ; then
    echo "Usage: $0 arg1"
    exit 1
fi

cat $(which $1)

exit 0

