gpt4 book ai didi

linux - 如何检查文件中存在的子字符串?

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

我想用 shell 脚本在文件中写一些规则。但在添加任何规则之前,我想检查一些条件。这是我的文件:

示例:

我写了一些规则,比如:

/home/Desktop/myfile.txt

iptables -t nat -A PREROUTING -p tcp -m tcp --dport 666 -j DNAT --to-destination 192.168.19.55
iptables -t nat -A PREROUTING -p tcp -m tcp --dport 633 -j DNAT --to-destination 192.168.19.44
iptables -t nat -A PREROUTING -p tcp -m tcp --dport 656 -j DNAT --to-destination 192.168.19.88

现在如果在添加新规则时文件包含相同的端口和IP,脚本应该打印规则已经存在。如果现有文件中只有端口,脚本应该打印已在使用的端口。否则,我想打印成功。

就是

case 1 : if i add 666 port with 192.168.19.55 IP , the script should print rule already exist .
case 2 : if i add 666 port with 192.168.66.55 IP , the script should print port already used .
case 3 : otherwise script print success .

我尝试编写简单的 shell 脚本,参数为 IP 和端口:

#!/bin/shell
if [ $# -eq 2 ]
then
//How to check the above conditions with file /home/Desktop/myfile.txt ??
//Need to add this rule to the myfile.txt
iptables -t nat -A PREROUTING -p tcp -m tcp --dport $2 -j DNAT --to-destination $1
else
echo "invalid arguments"
fi

最佳答案

您可以使用grep 来检查文件的内容。注意 . 在正则表达式中是特殊的,所以我使用参数扩展将其替换为 \. 与字面匹配的点。

#!/bin/bash

config=/home/Desktop/myfile.txt

ip=$1
port=$2

if grep -q -- "--dport $port .*--to-destination ${ip//./\\.}$" "$config"; then
echo Rule already exists. >&2
exit 1

elif grep -q -- "--dport $port " "$config"; then
echo Port already used. >&2
exit 1

else
echo iptables -t nat -A PREROUTING -p tcp -m tcp --dport $port -j DNAT --to-destination $ip
fi

这只是一个例子。实际上,端口和目标在配置文件中的出现顺序可能不同,因此表达式会更复杂。从仅包含给定格式的所需信息(即两列,目标和端口)的文件生成文件可能更容易。

关于linux - 如何检查文件中存在的子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45297375/

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