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 -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -