标签: linux bash
01 #!/bin/bash 02 HOSTFILE=myhosts 03 while read line 04 do 05 TMPLINE=$line 06 print $TMPLINE 07 done < $HOSTFILE
我无法理解第7行的使用。