码迷,mamicode.com
首页 > 其他好文 > 详细

for 循环

时间:2017-07-11 21:25:50      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:log   执行命令   nbsp   bin   txt   文件的   for   表示   div   

一、for 格式

for 变量 in 列表       
do
    执行语句
done

 

二、for 应用

我们通常把文件的内容作为循环条件,如下,假设 1.txt 里面的内容是很多 ip 地址,这个脚本则表示登录每台机器然后执行命令

#!/bin/bash
for ip in `cat 1.txt`   
do
    ssh $ip "ls"
done

 

 

 

 

    

for 循环

标签:log   执行命令   nbsp   bin   txt   文件的   for   表示   div   

原文地址:http://www.cnblogs.com/pzk7788/p/7152026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!