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

[REBOL] Re: Implicit renaming

From: richard:coffre:francetelecom at: 15-Apr-2002 14:13

OK, I realize that "Practice makes perfect" but step by step. Thank a lot -----Message d'origine----- De : Brett Handley [mailto:[brett--codeconscious--com]] Envoy=E9 : lundi 15 avril 2002 13:01 =C0 : [rebol-list--rebol--com] Objet : [REBOL] Re: Implicit renaming 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.