gpt4 book ai didi

linux - 如何在 grep 命令中排除字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 12:20:05 32 4
gpt4 key购买 nike

我有一个包含字符串列表的数组。

示例:array = ("Sample","Test","Check")。

我需要将其传递给 grep 命令以在获取结果时排除这些字符串。所以,在输出中我不应该有 ("Sample","Test","Check") 条款。请帮助我。

最佳答案

可以通过以下方式实现:

grep -v -e string_to_exclude_1 -e string_to_exclude_2 file_name

例如,以下命令从名为 sample.txt 的文件中排除 check.xml 和 test.xml

grep -v -e check -e test sample.txt

sample.txt 包含以下内容:

one.xml
two.xml
three.xml
test.xml
check.xml

关于linux - 如何在 grep 命令中排除字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46275892/

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