What does a ¶ (paragraph marker) in a Windows batch file mean? -


i came across this answer line:

for /f "tokens=1,* delims=¶" %%a in ( '"type %intextfile%"') 

however, there no explanation "¶" doing there. stackoverflow search strips out character, , google offers me pictures of ladies...

it's character shouldn't occur in target file, it's same delims=" (ie. no delimiters.)

tha having been said, fact code includes tokens=1* means first token (that part of line to, not including [any member of set of delimiter characters] assigned %%a , remainder of line %%b, appear author expecting character in file.


Comments