#!/bin/sh
while [ $# -gt 1 ]; do
	shift
done
exec cat "$1"
