Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. echo hello
  2. FOR /F %%G IN tempclist.txt DO type %%G
  3.  
  4. S:TLIB adminSets' choicelist orphans>echo hello
  5. hello
  6. tempclist.txt was unexpected at this time.
  7.  
  8. S:TLIB adminSets' choicelist orphans>FOR /F %G IN tempclist.txt DO type %G
  9.  
  10. S:TLIB adminSets' choicelist orphans>
  11.  
  12. @echo off
  13. echo hello
  14. FOR /F "usebackq delims=" %%G IN ("tempclist.txt") DO echo %%G
  15.  
  16. type "tempclist.txt"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement