value=$(cat) # read from stdinif [ "$pipe" != "" ]; then #check if pipe is not empty #Do something with pipe stringelse #Do something with argument stringfi
问题是当它没有管道时,脚本将停止并等待“ctrl d”,我不想要那个.关于如何解决这个问题的任何建议?
提前致谢.
/托马斯
if (($#)) ; then process ""else cat | processfi
或者,只是利用猫的相同行为:
cat "$@" | process总结
以上是内存溢出为你收集整理的linux – bash脚本读取管道或参数全部内容,希望文章能够帮你解决linux – bash脚本读取管道或参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)