Appearance of non-existing character in batch file

May 22, 2013 in answer

0 votes, 0.00 avg. rating (0% score)

ANSWER:

0 is STDIN, the standard input stream. Usually set/p reads its input from the user (standard input). With the code set /p A_Aaaaaa= you redirect the output from aaaaaa.aaa to the input, so set/p can read it. You can read something about streams here.

Endoro from http://stackoverflow.com/questions/16701188