具有多个命令的bash脚本管道

时间:2018-10-19 21:33:18

标签: bash syntax

我有下一个简单的脚本

#!/bin/bash
shopt -s lastpipe
echo "hello" | { read test1; hashID=$(echo -n "$test1" | md5sum | cut -d" " -f1) }

当我运行此脚本时,bash会返回:语法错误:文件意外结束。
我在哪里出错?

1 个答案:

答案 0 :(得分:0)

就像@Cyrus所说的那样,有效

 export default (
  <Route path='/' component={App}>
      <IndexRedirect to='/in'/>
    <Route path='in' component={Authentication(MainPage)}>
      <Route path='/newRoute' component={newComponent}/>
    </Route>
 </Route>
)

感谢@Cyrus