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.
在 kornshell 脚本中,我想逐行读取文件
如果该行包含特定单词,请说“澳大利亚”,
我想将整行复制到一个名为 Australia.txt 的新文件中
提前致谢,
Unix新手
你用grep.
grep
grep Australia input.txt > Australia.txt
如果您只想要“Australia”这个词而不想要“Australians”,那么在-w之后添加grep。如果你不关心大小写,那么“澳大利亚”就可以了,那么-i在grep.
-w
-i