Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Implicit renaming

From: brett:codeconscious at: 15-Apr-2002 21:00

Hi Richard,
> output1: copy head change find/last file "." ".loc" > output2: copy head change find/last file "." ".lst"
You have COPY in the wrong position. The lines should be: output1: head change find/last COPY file "." ".loc" output2: head change find/last COPY file "." ".lst" Brett.