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.
使用 grep 显示具有奇数个字符的行。任何想法,我不知道如何从每行获取字符数,我尝试使用 wc 但它只计算全局字符数。
仅使用以下方式获取具有奇数个字符的行grep:
grep
egrep -v '^(..)+$' file
正常的做法是像这样使用模运算符:
awk 'length%2' file
您可以使用重复来找出:
grep -v '^\(..\)\+$' file