how to generate unique string

前端 未结 4 560
广开言路
广开言路 2020-12-20 18:29

I want to transform an XML document into HTML. Some XML elements have links to others documents like:


In the H

4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-21 00:56

    I just changed @Jotne's answer for "for loop".

    for i in `seq 11 20`; do host myserver-$i | awk -v i="$i" '{print "myserver-"i" " $4}'; done
    

提交回复
热议问题