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.
我有一些问题:
1- 在文件 tu.txt 中,我怎样才能找到所有只包含大写字母的单词,例如 GFDY
2- 我怎样才能找到只有第一个字母大写的多词术语,例如皇家城堡
我更喜欢使用 grep。
1) grep -w "[[:upper:]]\{1,\}" tu.txt
grep -w "[[:upper:]]\{1,\}" tu.txt
其中[:upper:]menas[A-Z]和{1,}表示至少有一个来自[AZ] 的符号的词。
[:upper:]
[A-Z]
{1,}
2)“条款”是什么意思?请澄清你的逻辑..