好的,所以我需要创建一个命令,在一个文本块中列出任何给定文件中最常用的 100 个单词。我目前拥有的:
$ alias words='tr " " "\012" <hamlet.txt | sort -n | uniq -c | sort -r | head -n 10'
输出
$ words
14 the
14 of
8 to
7 and
5 To
5 The
5 And
5 a
4 we
4 that
我需要它以以下格式输出:
the of to and To The And a we that
(((在那张纸条上,我将如何告诉它以全部大写形式打印输出?))
而且我需要对其进行更改,以便可以将“单词”通过管道传输到任何文件,因此初始输入将命名文件,而不是在管道中指定文件,而管道将完成其余的工作。