开发者

How can I pause the console window in .pl and .bat file?

开发者 https://www.devze.com 2022-12-24 11:21 出处:网络
As I know, when I run cs myConsoleApp.cs from windows command line, I can pause the Console Window by add the code below:

As I know, when I run cs myConsoleApp.cs from windows command line, I can pause the Console Window by add the code below:

Console.ReadLine();

Then How can I pause Console Window in myConsoleApp.pl and myConsoleApp.bat? I just want to monitor the running result from the 开发者_运维问答Console window. Thank you.

Suppose myConsoleApp.bat like this:

taskkill /f /im "E1.exe"
taskkill /f /im "E2.exe"

pause 

Suppose myConsoleApp.pl like this:

use strict;
use warnings;

print "Hello World!";

<>;


pause for .bat

and

<>; #Read from STDIN

for Perl


I don't know about in perl, but in a batch file it's easy:

pause

The help for this command states:

Suspends processing of a batch program and displays the message
Press any key to continue . . .


<> for Perl works great. And yeah, pause is convenient for cmd.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号