#!/bin/csh -fb
# (The "-fb" might need to be changed to "-f" on some systems)
#

echo -n "Enter the name of a file in '${1:q}' format: "
set fnam=$<
if ("" == ${fnam:q}) then
    echo Aborted
    exit -1
endif
if (! -r  ${fnam:q}) then
    echo No such file
    exit -1
endif
cp ${fnam:q} ${2:q}
exit 0
