📜  使用 shell 脚本读取文件 - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:50:41.836000             🧑  作者: Mango
代码示例1
#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
echo "$line"
done < "$input"