1 matches found
anew
anew 将来自stdin的行追加到文件中,但仅当这些行尚未出现在文件中时。 新行也会输出到stdout,因此它有点像tee -a,但会去除重复项。 使用示例 这里,一个名为things.txt的文件包含一个数字列表。newthings.txt包含第二个 数字列表,其中一些出现在things.txt中,另一些则没有。anew被用来 将后者追加到things.txt中。 root@kitploit: ▶ cat things.txt Zero One Two ▶ cat newthings.txt One Two Three Four ▶ cat newthings.txt | anew...
6AI score
SaveExploits0References1
20