Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想计算一个txt文件中每一行的副本,我已经尝试了很多东西直到知道,但没有一个效果很好。在我的例子中,文本的每一行只有一个单词。
这是我最后一次尝试
echo -n 'enter file for edit: ' read file for line in $file ; do echo 'grep -w $line $file' done; <$file
例如:
输入文件
a a a c c
输出文件
a 3 c 2
提前致谢。
$ sort < $file | uniq -c | awk '{print $2 " " $1}'