I have here a sample code that I use (came from another stackoverflow thread). I don't have any question on how this runs.
I am just wondering what are the /*
and */
symbols for?
@set @a=0 /*
::modify input file and output file
@cscript //nologo //E:JScript "%~F0" < names.txt > output.txt
::modify output file and result file
:: @move /Y output.txt names_result.csv
type output.txt > names_result.csv
::end
@goto :EOF */
WScript.Stdout.Write(WScript.StdIn.ReadAll().replace(/\t/g,","));