使用bash脚本读取文件

前端之家收集整理的这篇文章主要介绍了使用bash脚本读取文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用“Do / While”循环读取一个文件.
我如何以字符串的形式读取内容

这是我的代码

cat directory/scripts/tv2dbarray.txt | while read line
do
  echo "a line: $line"
done

错误

test.sh: line 4: Syntax error near unexpected token `done'
test.sh: line 4: `done'
cat file | while read line
do
  echo "a line: $line"
done

编辑:

获取文件内容到var使用:

foo="`cat file`"
原文链接:https://www.f2er.com/bash/386557.html

猜你在找的Bash相关文章