Using the command line;
...works as it should...
I can re-direct the file contents to tmp9:
...and verify that tmp9: now contains the contents of r:\results.txt
Read more
Code:
R:\>(for %pid in ( %@pid[msedge.exe,+] ) do echo %pid) > r:\results.txt
...works as it should...
Code:
R:\>type r:\results.txt
14868
15096
15328
15336
14676
14432
14036
15536
15724
15780
22392
19352
7668
22068
6464
5884
3944
13780
772
I can re-direct the file contents to tmp9:
Code:
\R:\>type r:\results.txt > tmp9:
...and verify that tmp9: now contains the contents of r:\results.txt
Code:
R:\>type tmp9:
14868
15096
15328
15336
14676
14432...
Read more