我正在尝试创建一个.sh脚本,检查/ etc / hosts中是否存在某些类似“teamspeak.com”的IP /域,如果没有,那么我想在hosts文件中添加一些内容。
现在我正在尝试这个:
if ! grep -q "teamspeak.com == teamspeak.com" /etc/hosts; then
echo "Exists"
else
echo "Add to etc host ting here" >> /etc/hosts;
fi
答案 0 :(得分:9)
grep -q
如果找到任何匹配则退出0,否则退出1,因此您需要删除!和==比较:
if grep -q "teamspeak.com" /etc/hosts; then
echo "Exists"
else
echo "Add to etc host ting here" >> /etc/hosts;
fi
请注意,它不是基于单词的搜索,因此它也会找到myteamspeak.com或teamspeak.com.us。要获取整个主机名,您需要使用带分隔符的cut命令。
添加新主机:
echo "127.0.0.1 teamspeak.com" >> /etc/hosts