79183795

Date: 2024-11-13 07:34:18
Score: 0.5
Natty:
Report link

if you want generate just empty bat file can use this code:

set output_file="pathFile\fileName.bat"
echo. > %output_file%

but also when you want generate a not empty bat file can use this code:

set output_file="pathFile\fileName.bat"
(
echo.
echo HelloWorld
) > %output_file%
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AliT