在命令行中使用for循环

前端之家收集整理的这篇文章主要介绍了在命令行中使用for循环前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


在命令行中使用for循环: 注意使用{ }来进行变两个范围限制,等同于python中的range


[root@ES25 tmp]# for i in {0..9};do echo "10.46.19$i ansible_ssh_user=root ansible_ssh_pass=111111";done10.46.190 ansible_ssh_user=root ansible_ssh_pass=11111110.46.191 ansible_ssh_user=root ansible_ssh_pass=11111110.46.192 ansible_ssh_user=root ansible_ssh_pass=11111110.46.193 ansible_ssh_user=root ansible_ssh_pass=11111110.46.194 ansible_ssh_user=root ansible_ssh_pass=11111110.46.195 ansible_ssh_user=root ansible_ssh_pass=11111110.46.196 ansible_ssh_user=root ansible_ssh_pass=11111110.46.197 ansible_ssh_user=root ansible_ssh_pass=11111110.46.198 ansible_ssh_user=root ansible_ssh_pass=11111110.46.199 ansible_ssh_user=root ansible_ssh_pass=111111

原文链接:/bash/390957.html

猜你在找的Bash相关文章