Document
摘要: 第一种方法 #!/bin/bash while read line do echo $line done < filename(待读取的文件) 第二种方法 #!/bin/bash cat filename(待读取的文件) | while read line do echo $line done 第三 阅读全文
posted @ 2022-01-14 16:05 lsepi 阅读(327) 评论(0) 推荐(0) 编辑