我需要通过管道传输数据并使用这些数据传输文件,我可以在脚本中做这样的事情吗?
cat ${1} | ./helper ${1}
如果我写
有什么区别cat ${1} | ./helper < ${1}
答案 0 :(得分:0)
“&LT;”将文件内容添加到脚本stdin
pipe还重定向./helper脚本的stdin的输出
你可以做cat ${1} | ./helper
或./helper < ${1}
假设$ {1}是文件名,并在帮助程序脚本中从/ dev / stdin访问它