Make a certain file With NotPAD i want to make a Program. And DO i need to use
@Echo off? i want to use a diffrent thing to use cause that is kinda boring to type echo every 5 seconds.
Printable View
Make a certain file With NotPAD i want to make a Program. And DO i need to use
@Echo off? i want to use a diffrent thing to use cause that is kinda boring to type echo every 5 seconds.
Just put a ^ everywhere you'd use @Echo Off, Find all and replace later.
What kind of program?
A batch file,, I assume?
Download strawberry perl and follow my tutorials. Replace "say hello" etc with what you want to run in cmd. Where every new line is a new command.
PHP Code:
#!/usr/bin/perl
system "say hello
say how are you?
say bye";