我有一个.txt
文件,其中包含不同的字词(100万字)。我想制作一个包含有关单词出现的信息的输出文件。我正在使用命令:
$ ./dumpindex /home/pankaj/indri-5.0/Query/indri_test_may.idx/ t "input_word_from_file" > /home/pankaj/output_file.txt
input_word_from_file
是文件中的查询字。
问题:
答案 0 :(得分:1)
用于追加使用>>而不是>
$ ./dumpindex /home/pankaj/indri-5.0/Query/indri_test_may.idx/ t "input_word_from_file" >> /home/pankaj/output_file.txt