vote up 6 vote down star
1

How can I read the first line from a text file using DOS batch commands? Since the file is large I only want to deal with the first line.

flag

10 Answers

vote up 11 vote down check

Again adding to other answers, and combining them into a utility that mimics the gnu head utility, which I named "head.bat":

@echo off
setlocal enabledelayedexpansion
if [%1] == [] goto usage
if [%2] == [] goto usage

SET /a counter=0

for /f "usebackq delims=" %%a in (%2) do (
if "!counter!"=="%1" goto exit
echo %%a
set /a counter+=1
)

goto exit

:usage
echo Usage: head.bat COUNT FILENAME

:exit

Test runs:

Z:\>head "test test.c"
Usage: head.bat COUNT FILENAME
Z:\>head 1 "test test.c"
#include <stdlib.h>

Z:\>head 2 "test test.c"
#include <stdlib.h>
#include <stdio.h>

Z:\>head 3 "test test.c"
#include <stdlib.h>
#include <stdio.h>
int q;

Z:\>head 2 t.c
#include <stdlib.h>
#include <stdio.h>

Z:\>head 0 t.c
link|flag
1  
FYI: "GOTO :EOF" That's a special label that will exit the script without having to define a special ":exit" label. It's also useful when defining subroutines in the batch ( what's that you say? subroutines? Yep ) – Steven Dec 5 '08 at 14:36
vote up 0 vote down

Here are a couple of quick commands to list lines from a text file.

First read the file into a string variable.

var str content
cat "C:/file.txt" > $content

Now, you are ready to list any lines. To list first line

lex "1" $content

Want to list first 10 lines ?

lex "10]" $content

The last line ?

lex "l" $content      # It is Lower Case Ell (l) inside the double quotes.

Patrick

link|flag
vote up 0 vote down

Note, the batch file approaches will be limited to the line limit for the DOS command processor - see What is the command line length limit?.

So if trying to process a file that has any lines more that 8192 characters the script will just skip them as the value can't be held.

link|flag
vote up -2 vote down

Any ideas how to echo or type the last 10 lines of a txt file?

I'm running a server change log script to prompt admins to state what they're doing, so we can track changes. I'm trying to get the script to show the last 10 entries or so to give an idea of what's been happening recently, but this script above deals with the first line. I'm after the last 10 lines or so.

Any thoughts? I'm totally stuck.

link|flag
2  
This is a question not an answer to a question. You should post this as its own question if you truly are looking for an answer. – Ray Vega Oct 3 '08 at 19:45
vote up 0 vote down

One liner, useful for stdout redirect with ">":

@for /f %%i in ('type yourfile.txt') do @echo %%i & exit
link|flag
vote up 1 vote down

Slightly building upon the answers of other people. Now allowing you to specify the file you want to read from and the variable you want the result put into:

@echo off
for /f "delims=" %%x in (%2) do (
set %1=%%x
exit /b
)

This means you can use the above like this (assuming you called it getline.bat)

c:\> dir > test-file
c:\> getline variable test-file
c:\> set variable  
variable= Volume in drive C has no label.
link|flag
vote up 0 vote down

Thanks to thetalkingwalnut with answer http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file#130154 I came up with the following solution:

@echo off
for /f "delims=" %%a in ('type sample.txt') do (
echo %%a
exit /b
)
link|flag
vote up 0 vote down

Try GNU32 "head" utility. Don't think what you are after will be easily accomplished by just DOS Batch.

link|flag
vote up 3 vote down

You might give this a try:

@echo off

for /f %%a in (sample.txt) do (
  echo %%a
  exit /b
)
link|flag
This gave me the clue I needed but was not quite right. Not sure what the proper procedure was but I incorporated this solution into the final solution. see stackoverflow.com/questions/130116#130209 – Jesse Sep 24 '08 at 21:57
This solution's problem is that it delimits on space instead of newline, and you can't have a filename with spaces. You can fix these issues with the delims and usebackq options in the for loop. – indiv Sep 24 '08 at 23:12
vote up 0 vote down

You can get ports of standard UNIX utilities (specifically 'head') to MS platforms. I don't know if there's a built-in way though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.