gpt4 book ai didi

windows - 如何计算文本文件中的行数并将值存储到使用批处理脚本的变量中?

转载 作者:可可西里 更新时间:2023-11-01 11:57:12 25 4
gpt4 key购买 nike

我想计算文本文件中的行数,然后必须将该值存储到环境变量中。统计行数的命令是

findstr /R /N "^" file.txt | find /C ":"

我提到了问题 How to store the result of a command expression in a variable using bat scripts?然后我试了一下,

set cmd="findstr /R /N "^" file.txt | find /C ":" "

我收到错误消息,

FIND: Parameter format not correct

我怎样才能摆脱这个错误。

最佳答案

有一种方法比所有这些其他方法都简单得多。

find /v /c "" filename.ext

显然,这是从遗留的 MS-DOS 时代继承下来的。更多信息在这里:https://devblogs.microsoft.com/oldnewthing/20110825-00/?p=9803

使用示例:

adb shell pm list packages | find /v /c ""

如果您的 android 设备已连接到您的 PC,并且您的路径上有 android SDK,这将打印出您设备上安装的应用程序的数量。

关于windows - 如何计算文本文件中的行数并将值存储到使用批处理脚本的变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5664761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com