gpt4 book ai didi

linux - 庆典 shell : grepping two strings in same line and use it in if-condition

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:38:53 25 4
gpt4 key购买 nike

grep string1 file1.txt | grep -q string2
if [ $? == 0 ]; then
echo "both string1 and 2 found"
else
echo "either or both missing"
fi

我需要在 file1.txt 的同一行中找到 string1 和 string 2,有没有更好的方法来写这个或者这个已经很好了?感谢所有帮助,我是 shell 编程的新手。

最佳答案

如果顺序无关紧要,它已经很不错了,但您可以将其缩短为:

grep string1 file1.txt | grep -q string2 && echo 找到 ||找不到回显

关于linux - 庆典 shell : grepping two strings in same line and use it in if-condition,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19530441/

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