标签: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
标签:log 执行命令 nbsp bin txt 文件的 for 表示 div
原文地址:http://www.cnblogs.com/pzk7788/p/7152026.html