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

[REBOL] Re: CALL and shell console

From: wang:rebol:it at: 11-Dec-2007 13:11

Hallo Giuseppe,
> I want to use call to move files using the window system command move but > it always open for an istant a console windows eve with I/O redirected to > the consile (call/console). Is there a way to avoid this ? >
ostr: make string! 2048 call/output {move file1 file2} ostr should do that. To be sure use rebol with -q and/or -w (not sure if you need both, Linux here). Zaijian, Mario