美文网首页
while read 使用

while read 使用

作者: 独钓寒江sjl | 来源:发表于2018-11-27 17:35 被阅读0次
    #!/bin/bash
    NUM=1
    while read ip port
    do 
        echo -e "第$NUM个是$ip"
        echo -e "第$NUM个$port"
        NUM=$(( $NUM + 1 ))
    done </root/sh/ip.txt
    
    ip.txt的内容
    10.1.1.10 3000
    10.1.1.11 3001
    10.1.1.12 3002
    10.1.1.13 3003
    

    相关文章

      网友评论

          本文标题:while read 使用

          本文链接:https://www.haomeiwen.com/subject/bqknqqtx.html