“ – ”是指bash中的stdout吗?

前端之家收集整理的这篇文章主要介绍了“ – ”是指bash中的stdout吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
“ – ”是bash中stdout的快捷方式吗?如果不是什么意思?例如,
wget -q -O - $line

stdin怎么样?

感谢致敬!

据我所知,bash没有涉及破折号的使用.它只是许多UNIX命令行实用程序的约定 – 在命令行上代替输入或输出文件名时,作为stdin或stdout的占位符.

编辑:找到它,此行为在The Open Group Base Specifications的POSIX Utility Syntax Guidelines,§12.2.13中指定:

For utilities that use operands to represent files to be opened for either reading or writing,the ‘-‘ operand should be used only to mean standard input (or standard output when it is clear from context that an output file is being specified).

原文链接:https://www.f2er.com/bash/387092.html

猜你在找的Bash相关文章