1. 程式人生 > >bash中打印文件每一行及其行號

bash中打印文件每一行及其行號

lin spa span col color one clas 文件 打印

  

#!/bin/bash
linenumber=$(cat remoteIP.cfg |wc -l)
currentline=0
for ip in $(cat remoteIP.cfg)
do
        currentline=$[$currentline+1]
        echo "linenumber:$currentline value:$ip"
done

bash中打印文件每一行及其行號