gpt4 book ai didi

linux - 如何在 Linux 中用 awk 比较连续的区分大小写的单词?

转载 作者:太空宇宙 更新时间:2023-11-04 09:45:44 24 4
gpt4 key购买 nike

awk '{
for(i = 1; i <= NF; i++) {
j = i + 1;
if($i == $j) {
print FNR " | " $0 " | " $i;
}
}
}' myfile

如果 myfile 有这些行:

There is a storm storm outside .

My my car is red .

输出将是:

1 | There is a storm storm outside . | storm

如何让命令忽略大小写敏感度并同时显示?

2 | My my car is red . | my

最佳答案

你可以使用 'toupper' 将字符串转换为大写

if(toupper($i) == toupper($j)) {

关于linux - 如何在 Linux 中用 awk 比较连续的区分大小写的单词?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16507407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com