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

[REBOL] Re: input redirection

From: athymik:ifrance at: 26-Jan-2003 18:46

Hi Rebolask !
> I tried this redirection > rebol.exe -s myprog.r "param1=something" < input.dat > > it doesn't work since it takes it as parameter also. So what would be the right syntax ? > > Thanks
cat input.dat | rebol.exe -s myprog.r "param1=something" seems to work. Athymik