View Single Post
  #4 (permalink)  
Old 08-27-2008, 07:51 PM
youwish youwish is offline
Newbie
 
Join Date: Aug 2008
Posts: 14
Credits: 0
Rep Power: 0
youwish will become famous soon enough
Default Re: batch command question

Code:
@echo off
set file=xxx.txt
for /f "tokens=1*" %%a in (%file%) do echo %%a
pause
Is this what you want? My batch skills are rough.
Reply With Quote