-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why not use @ECHO OFF? #868
Comments
I tink mainly because using echo off would also set echo off in the following cmd session. |
I might try that and see. Not sure that's true. On March 4, 2016 7:40:15 PM Jan Schulz notifications@github.com wrote:
|
Tested, verified safe, and implemented in #873. |
Fixed in #873 |
I like this pattern for bat files etc:
By default echo is off, but it makes debugging easy as you can temporarily 'set ECHO=on' in your shell. |
This is more of a question than an issue.
Why do we litter cmd and bat files with useless
@
signs to turn off command echo per line instead of just putting@echo off
as the first line of the file?The text was updated successfully, but these errors were encountered: