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 -

how does one get csharp-sqlite to throw exceptions for duplicates or foreign key constraint violations -

Simple Angular 2 project fails 'Unexpected reserved word' -