您现在的位置: 首页 > 动态 > 文章正文动态
for循环嵌套(shell里for循环可以嵌套if吗)
发布时间:2022-10-23 11:20 点击:次
我的回答:可以嵌套。
shell里面for循环是可以嵌套if条件语句的。
举例:
for i in `cat /etc/ansible/iplist`;do
if echo $i |grep "192"; then
pass='Abc@123'
echo "$i ansible_ssh_port=22 ansible_ssh_user=root ansible_user_pass="$passp"" >>/etc/ansible/hosts
else
echo $i >>/etc/ansible/hosts
fi
done