bmatzelle / gow

Unix command line utilities installer for Windows.
https://github.com/bmatzelle/gow/wiki
6.58k stars 365 forks source link

Inlining "@echo off" and replacing argument enumeration in batch files. #207

Closed vovcacik closed 3 years ago

vovcacik commented 8 years ago

The @echo off command is inherited, that's why it is good practice to inline it if possible.

The %1 %2 %3 %4 %5 %6 %7 %8 %9 enumeration can be safely replaced with %*.

Both changes are backwards compatible, minor but not just cosmetics.