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.
|
|
Again adding to other answers, and combining them into a utility that mimics the gnu head utility, which I named "head.bat":
Test runs:
|
||||
|
|
|
You might give this a try:
|
||||
|
|
|
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:
This means you can use the above like this (assuming you called it getline.bat)
|
|||
|
|
|
|
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. |
||
|
|
|
|
Try GNU32 "head" utility. Don't think what you are after will be easily accomplished by just DOS Batch. |
|||
|
|
|
|
One liner, useful for stdout redirect with ">":
|
||
|
|
|
|
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:
|
|||
|
|
|
|
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. |
||
|
|
|
|
Here are a couple of quick commands to list lines from a text file. First read the file into a string variable.
Now, you are ready to list any lines. To list first line
Want to list first 10 lines ?
The last line ?
Patrick |
||
|
|
|
|
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. |
||||
|
