如何在 Bourne shell 中将命令的输出捕获到文件描述符?
在 Bourne shell 中捕获命令输出的标准方法是使用 $()
语法:
output=$(mycommand)
但是,对于具有大量输出的命令,这需要 shell 为整个内容分配内存作为一个 long细绳。 我更愿意找到一些与 Unix C 函数 popen
道德上等效的东西,以获得一个我可以读取
的新文件描述符:
newfd=popen(mycommand)
while read -u $newfd LINE; do
#process output
done
这可能吗?
The standard way to capture command output in Bourne shell is to use the $()
syntax:
output=$(mycommand)
For commands that have a lot of output, however, this requires the shell allocate memory for the whole thing as one long string. I'd prefer to find something that does the moral equivalent of the Unix C function popen
, to get a new file descriptor I could read
from:
newfd=popen(mycommand)
while read -u $newfd LINE; do
#process output
done
Is this even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 'ls' 替换为您选择的命令
Replace 'ls' with the command of your choice