使用 grep -E 命令在词典(文件)中查找这些单词的内容“ice”,然后使用方括号查找“s”或“d”,即 ices 或 iced。谢谢!
答案1
这有效:
grep 'ice[s|d]' dictionary_file.txt
如下例所示:
mtak@frisbee:~$ more dict.txt
icecube
ices
icea
iceb
iced
mtak@frisbee:~$ grep 'ice[s|d]' dict.txt
ices
iced
mtak@frisbee:~$