运行平台:centos
while循环读取文件#!/bin/bashcat a|while read -r line do echo $line done(使用参数r会屏蔽文本中的特殊符号,只做输出不做转译)