如何读取文件最后一行

<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h4>Oh snap! You got an error!</h4>
<p>Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula,

bat 读取文本最后一行

如何用 批处理 读取某文本最后一行比如 有一个 1.txt文件内容为:123456789123456789987654321怎样读出最后一行(987654321)的内容还有倒数第二行读取最后一行
for /f "delims=" %%i in ('type 1.txt') do set a=%%i
echo 最后一行:%a%

或者
setlocal enabledelayedexpansion
set c=0
for /f "delims=" %%i in ('type 1.txt') do set /a a+=1
for /f "skip=!a!-2 tokens=1,2 delims="

如何读取文件最后一行

<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h4>Oh snap! You got an error!</h4>
<p>Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula,

bat 读取文本最后一行

如何用 批处理 读取某文本最后一行比如 有一个 1.txt文件内容为:123456789123456789987654321怎样读出最后一行(987654321)的内容还有倒数第二行读取最后一行
for /f "delims=" %%i in ('type 1.txt') do set a=%%i
echo 最后一行:%a%

或者
setlocal enabledelayedexpansion
set c=0
for /f "delims=" %%i in ('type 1.txt') do set /a a+=1
for /f "skip=!a!-2 tokens=1,2 delims="