计算文件中的行数并将结果保存到新的文本文件

计算文件中的行数并将结果保存到新的文本文件

我想计算一个名为“cat”的文件中的行数

我在 CMD 中运行的脚本是

echo -e "Enter file name: \c" 
read filename 
wc -l $filename

which leads to result [24 cat] after running 

这个 ^^^ 基本上只给出文件中的行数。但我想将结果保存到新文本文件打印:

There are 24 cat, in the folder cat 

有谁知道如何保存脚本提供的信息?

感谢大家 !

答案1

我发现了这个问题的答案:

echo -e "Enter file name: \c" 
read filename                   #saves variable
total=$(wc -l $filename)       #calculate total lines in the *CAT* file
echo There are $total           #prints There are *numberoflines*

echo $total > newfile           #writes the answer into a newly created file 

感谢大家的评论,不知道为什么被删了

相关内容