Guest User

Untitled

a guest
Jan 13th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @echo off
  2. set /p var= < tmp.file
  3. echo "%var%"
  4.  
  5. -----------------> WORKS
  6.  
  7. @echo off
  8. set /p var= < tmp.file && echo "%var%"
  9.  
  10. -----------------> DOES NOT (echoes "")
Add Comment
Please, Sign In to add comment