我sed
用来查找 txt 文件中的总行数。我想将 sed 的输出分配给一个变量。
我使用以下代码来执行此操作:
for /f %%a in (`"sed15 -n $= TEST.TXT"') do set linenum=%%a
我收到此错误消息:
the system cannot find the file `"sed15 -n $= TEST.TXT"'
我该如何解决这个问题?
我sed
用来查找 txt 文件中的总行数。我想将 sed 的输出分配给一个变量。
我使用以下代码来执行此操作:
for /f %%a in (`"sed15 -n $= TEST.TXT"') do set linenum=%%a
我收到此错误消息:
the system cannot find the file `"sed15 -n $= TEST.TXT"'
我该如何解决这个问题?