显示指定行的内容

出处:http://www.cn-dos.net/forum/viewthread.php?tid=21647

This page shows how to read specific lines from a text file. There are many ways to have the for /f command read the input file, for instance:-

for /f "delims=" %%a in (input.txt) do ...

for /f "delims=" %%a in (‘type input.txt‘) do ...

for /f "delims=" %%a in (‘more ^< input.txt‘) do ...

However, only the last method (using the more command) will give consistent results across Windows NT, 2000, XP and 2003. The first method does not recognise unicode files. Also, the usebackq switch must be used if the input filename contains spaces. The second method, using the type command, also fails to recognise unicode files on Windows 2000, XP and 2003 if the input file does not begin with a bit order mark (BOM).

In all the examples, assume the contents of of the file numbers.txt to be:-

one
two
three
four
five
six
seven
eight
nine
ten

Displaying the first line

This example prints one.

@echo off & setlocal ENABLEEXTENSIONS
set "first="
for /f "delims=" %%a in (‘more ^< numbers.txt‘) do (
if not defined first set first=%%a
)
echo/%first%

Displaying the first X lines

This example prints one, two and three.

@echo off & setlocal ENABLEEXTENSIONS
set "lines=3"
set i=-1
set "ok="
for /f "delims=" %%a in (‘more ^< numbers.txt‘) do (
set/a i+=1 & for /f %%z in (‘echo/%%i%%‘) do (
if "%%z"=="%lines%" set ok=1
)
if not defined ok echo/%%a
)

Displaying the last line

This example prints ten.

@echo off & setlocal ENABLEEXTENSIONS
for /f "delims=" %%a in (‘more ^< numbers.txt‘) do set "last=%%a"
echo/%last%

Displaying the last X lines

This example prints nine and ten.

@echo off & setlocal ENABLEEXTENSIONS
set "lines=2"
for /f %%a in (‘find/c /v "" ^< numbers.txt‘) do set/a skip=%%a-lines
for /f "delims=" %%a in (‘more/e +%skip% ^< numbers.txt‘) do (
echo/%%a
)

Displaying the Nth line

This example prints three. Note that instead of using the more command‘s /e switch, the skip option could have been used with the for /f command, however, this fails is it is set to any number less than one.

@echo off & setlocal ENABLEEXTENSIONS
set LineNo=3
set "line="
set/a LineNo-=1
for /f "delims=" %%a in (‘more/e +%LineNo% ^< numbers.txt‘) do (
if not defined line set "line=%%a"
)
echo/%line%

Displaying the Nth line plus X number of lines

This example prints five and six.

@echo off & setlocal ENABLEEXTENSIONS
set start=5
set "lines=2"
set/a i=-1,start-=1
set "ok="
for /f "delims=" %%a in (‘more/e +%start% ^< numbers.txt‘) do (
set/a i+=1 & for /f %%z in (‘echo/%%i%%‘) do (
if "%%z"=="%lines%" set ok=1
)
if not defined ok echo/%%a
)

原文地址:https://www.cnblogs.com/sfqas/p/12181877.html

时间: 2024-10-13 12:40:37

显示指定行的内容的相关文章

批处理命令get_line获取文本总行数并显示指定行的内容

研究背景 get_line是一个很好的工具,它能快速获取文本内容总行数(不包括空行),并显示指定行内容.它有一个特点,就是计算的总行数不包括空行,也就是说它只统计非空行的行数,对处理矩阵数据非常有用. 使用帮助 获取文本内容总行数(不包括空行),并显示指定行内容. get_line {filename | number} filename           文件名,可包含路径,如有空格需用双引号""括起来 number             指定要显示的行,只能输入整数 在批处理中

linux 查找指定内容并显示指定行数的命令,显示匹配行和行号

grep -i "desktop-printing-0.19-20.2.el5.x86_64" -n -A 10 install.log linux 查找指定内容并显示指定行数的命令,显示匹配行和行号,布布扣,bubuko.com

linux tail显示指定文件末尾内容

tail 命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail -f filename会把filename里最尾部的内容显示在屏幕上,并且不但刷新,使你看到最新的文件内容. 1.命令格式; tail[必要参数][选择参数][文件] 2.命令功能: 用于显示指定文件末尾内容,不指定文件时,作为输入信息进行处理.常用查看日志文件. 3.命令参数: -f 循环读取 -q 不显示处理信息 -v 显示详细的处理信息 -c<数目> 显示的字节数 -n&l

cat 显示指定行

[一]从第3000行开始,显示1000行.即显示3000~3999行 cat filename | tail -n +3000 | head -n 1000 [二]显示1000行到3000行 cat filename| head -n 3000 | tail -n +1000 *注意两种方法的顺序 分解: tail -n 1000:显示最后1000行 tail -n +1000:从1000行开始显示,显示1000行以后的 head -n 1000:显示前面1000行 [三]用sed命令 sed

ArcMap制图_显示指定区域地图内容

摘要:有一张完整的中国地图,有时仅要求针对某一特定区域制图,那么如何在不进行裁剪的情况下仅显示该区域范围的要素内容? 步骤: 1.打开ArcMap,加载完整的中国地图: 2.将要显示的区域范围制作成一个polygon图层命名为ClipLyr,并添加进来: 3.定义“数据框属性(Data Frame Properties)”: 范围(Extent)包括三个选项:Automatic:默认:Fixed Scale:只显示某个指定比例尺下地图,不可进行地图放大.缩小操作:Fixed Extend:只显示

php替换文件指定行的内容

1 //第一种 利用file 函数 读取文件,每一行都是一个数组元素 2 $arr = file($file); 3 $arr[$line] = "hello"; 4 file_put_contents($file, implode("", $arr)) 5 6 //第二种 7 8 =$fp = new \SplFileObject('./test.php', 'r+'); 9 //转到第二行, seek方法参数从0开始计数, 经我测试指针指向行尾了, 所以修改的是

Linux 显示文本指定行内容

主要采用sed.head和tail命令 如果文本中使用了 \n 这类符号,cat命令会把它当成换行符,结果会出错 $ sed -n "10p" move.sh   # 显示第10行 $ sed -n "7,10p" move.sh # 显示第7行到第10行 $ cat recorde | head -n 10|tail -n 1 # 显示第10行,先显示前10行,再显示这10行中的最后一行 $ cat recorde | tail -n +10 | head -n

SQL查询显示行号、随机查询、取指定行数据

1.显示行号 如果数据没有删除的情况下主键与行号是一致的,但在删除某些数据,行号就与主键不一致了,这时需要查询行号就需要用新的方法,在SQL Server2005之前,需要使用临时表,但在SQL Server2005中,使用ROW_NUMBER()非常方便. select row_number() over (order by UseriD) as rowNum,* from UserInfo 查询结果: 2.随机查询 有的时候我们需要查询出的数据是随机排序的,newid()函数在扫描每条记录时

如何通过css控制内容显示顺序 第二行的内容优先显示

我们有时进行网页设计时为了想让用户感兴趣的内容优先显示在前,又不想改动代码的先后顺序,要怎么操作呢?(或者换种说法:源代码中要先看到A再看到B,而视觉上是先B再A)举个简单的例子,想让第二行的内容在不改动代码的情况在视觉上显示在第一行.如图,左图是正常显示,想让它们对换一下顺序,像右图一样展示出来.   我们可以通过div+css的形式来定义 css中position的absolute(绝对)和relative(相对)两个参数,我们将上面右图的css作如下定义: .bock1 { width:3