Linux

計算文件中的行數並將結果保存到新的文本文件

  • May 24, 2021

我想計算一個名為“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 

有誰知道如何保存腳本提供的資訊?

感謝大家 !

我發現了這個問題的答案:

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 

感謝所有評論,不知道為什麼它被刪除

引用自:https://unix.stackexchange.com/questions/650175