如何在 Bourne shell 中将命令的输出捕获到文件描述符?

发布于 2024-07-14 21:40:47 字数 357 浏览 9 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿童谣 2024-07-21 21:40:47
#!bash
ls | while read X
do 
    echo  $X is a directory entry
done

将 'ls' 替换为您选择的命令

#!bash
ls | while read X
do 
    echo  $X is a directory entry
done

Replace 'ls' with the command of your choice

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文