php-short-array-syntax-converter icon indicating copy to clipboard operation
php-short-array-syntax-converter copied to clipboard

Incorrect windows command line

Open timint opened this issue 4 years ago • 0 comments

Thanks for this lovely script that saved me tons of hours and seems to make no mistakes.

Here is a fix for windows users:

FOR /f "tokens=*" %a in ('dir *.php /S/B') DO php convert.php %a -w

Should be:

FOR /f "tokens=*" %a in ('dir *.php /S/B') DO php convert.php -w "%a"

timint avatar Mar 17 '20 23:03 timint