1#!/bin/sh 2 3if test "$#" -lt 2 4then 5 echo >&2 "USAGE: $0 <OUTPUT> <INPUT>..." 6 exit 1 7fi 8 9OUTPUT="$1" 10shift 11 12cat "$@" >"$OUTPUT"