seq를 이용하여 서버목록에 ssh 명령 실행하기 - 예제


#!/bin/sh


for i in $(seq -f "%03g" 140 179)

do

  ssh www@indigo$i.itl.google.com "hostname; /sbin/sysctl net.ipv4.ip_local_port_range "

done


Posted by '김용환'
,