I recently found that LINQPad can execute shell commands. Can someone show me an example how to use LINQPad queries to execute batch job?
Sorry I didn't make my question clear. What I mean is make .linq file bec开发者_JAVA百科ome my batch file. That is, schedule a batch job written in .linq file and use LINQPad as the command to execute it.
Just call the batch file using the shell execute command:
Util.Cmd (@"c:\batch\MyBatchFile.bat");
精彩评论