按行读取文件#!/usr/bin/bash
# 当前目录
PWD=`pwd`
FILE="$PWD/itaken.txt"
i=0
# 读取每一行
while read LINE; do
i=$((i+1
2021-02-26