阅读量:3
你可以使用以下命令来统计文件的行数:
#!/bin/bash file="example.txt" # 文件名 # 使用wc命令统计文件的行数并保存到变量中 line_count=$(wc -l < "$file") echo "文件 $file 中的行数为: $line_count"
将上述代码保存为一个名为 count_lines.sh
的文件,并赋予执行权限。然后在终端中运行该脚本:
chmod +x count_lines.sh ./count_lines.sh
以上命令将输出文件 example.txt
中的行数。你可以根据需要,将 example.txt
替换为你要统计行数的文件名。