*** empty log message ***

This commit is contained in:
jwalz
2002-01-05 21:05:55 +00:00
parent a54adfb9a9
commit 6e5d979cb3

13
sys/amiga/ship/cmove Normal file
View File

@@ -0,0 +1,13 @@
.key src/a,dst/a
; cmove
; copy $1 to $2, if $1 exists
if exists <src>
; echo "<src>-><dst>"
copy <src> <dst> clone
else
if not exists <dst>
echo "CAUTION: <dst> DOES NOT EXIST!"
else
echo "Warning: no source for <dst>"
endif
endif