shell出现syntax error near unexpected token `<' 解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell出现syntax error near unexpected token `<' 解决方法相关的知识,希望对你有一定的参考价值。

最新在看一个shell资料时,按照教材,却出现如下错误,不能运行

如下,简单的脚本:

#!/bin/bash
cat |while read line
do
  echo $line
done < <(data.txt|awk {print $0})

运行时,却出现如下错误

[[email protected] shellcookbook]# sh while_test.sh 
while_test.sh: line 5: syntax error near unexpected token `<while_test.sh: line 5: `done < <(data.txt|awk {print $0})

然后在单行运行时,却没有错误

[[email protected] shellcookbook]# while read line;do echo $line;done < <(cat data.txt|awk {print $1})
1
2
3
4

 

在网上查看后,确认无脚步错误,无dos文件错误。还是没有好的解决方法。通过多方求证。原来是bash 3.0后,shell中加入了新的符号"<<<" 可以获取子任务

现将脚本更改如下,成功运行:

#!/bin/bash
cat |while read line
do
  echo $line
done <<< `cat data.txt|awk {print $0}`

成功运行

[[email protected] shellcookbook]# sh while_test.sh 
1 2 3 4

 

以上是关于shell出现syntax error near unexpected token `<' 解决方法的主要内容,如果未能解决你的问题,请参考以下文章

shell编程报错:“syntax error near unexpected token `”

运行shell脚本提示syntax error near unexpected token `$'do ''

shell脚本启动语法错误syntax error near unexpected token '{

执行shell脚本报错:syntax error near unexpected token `或syntax error: unexpected end of file

shell脚本syntax error near unexpected token `done'

linux的shell脚本报错“syntax error near unexpected token `”的解决