home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Internet Tools 1993 July
/
Internet Tools.iso
/
RockRidge
/
mail
/
metamail
/
bin
/
getfilename
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-10-20
|
219 b
|
15 lines
#!/bin/csh -f
echo -n "Enter the name of a file in '$1' format: "
set fnam=$<
if ("" == "$fnam") then
echo Aborted
exit -1
endif
if (! -r $fnam) then
echo No such file
exit -1
endif
cp $fnam $2
exit 0