Is it OK to use indentation in Windows batch files? -


is style ok, or each line must started line 1st position? not impact on execution, readability.

if not exist "%aaa%" (     %%f in (*.*) (         echo copying %%f         copy %%f "%aaa%" > nul     ) ) 

it's not okay, preferred.


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

[C++][SFML 2.2] Strange Performance Issues - Moving Mouse Lowers CPU Usage -

ios - Possible to get UIButton sizeThatFits to work? -