01-26-2005 12:13 PM
01-27-2005 03:47 PM
01-28-2005 04:22 PM
09-08-2006 12:00 PM
command = "start cmd /C ""sed s/""hello my name is""/""hello my name is Jose""/g temp1.txt >temp2.txt"""
oscmd(command);
will do what you want to do.
You might also have problems using grep with the pipe "|" command. If you want to do something like this: 'dir | grep bytes', [out=format]===oscmd(command) will not return the expected output in out. The only thing I could figure out is to begin the command with 'start cmd /C',
redirect the output to a temp. file and read it in using [out=format]===oscmd("type temp.txt') . Now out will contain the expected output. If anyone else knows a slicker method, please post it.Regards,
Jose