in reply to Re^3: Automating cmd prompt command executionin thread Automating cmd prompt command execution
my $run = 'y'; while ($run =~ /^y/i) { ... print 'Do u want to continue? '; $run = readline; } [download]