使用行计数命令 wc -l <document_name> (Linux),我得到行数减去 1 的 return

Using the line count command wc -l <document_name> (Linux), I am getting a return of the number of lines minus 1

看来正在统计returns的车厢数。 此外,当我执行 cat 命令时,命令行与最后一行文本连接在一起。 所以,

cat newdoc

给我最后一行

保存orangepi@OrangePi:~

其中 'be saved' 是文档的最后一行,cmd 行在同一行继续 和

wc -l newdoc

returns

9 newdoc

orangepi@OrangePi:~

对于 10 行文档没有 cmd 行在同一行继续。

小心 wc,因为它不会计算最后一行,除非末尾有 EOL 字符。请改用 grep -c "" filename