在 Unix 中如何同时写入文件并打印到终端?

发布于 2024-09-03 02:52:49 字数 437 浏览 8 评论 0原文

我有一个小的 bash 函数来将我的 Macports 输出记录到一个文件中(因为安装经常会产生一些很容易在终端噪音中丢失的小花絮),然后我只需将文件传输到终端:

function porti {
    command sudo port install $@ >> $1.log 2>&1; cat $1.log
}

有办法吗同时进行?

顺便说一句 我传递 $@ 进行安装,但仅使用 $1 作为文件名,这样我就可以执行以下操作:

porti git-gore +bash_completion

并且只获取文件 git-core.log< /em> 但是其他人可能更喜欢在文件名中包含变体...

I have a little bash function to log my Macports outputs to a file (since installs often spew little tidbits that are easy to lose in terminal noise), then I just cat the file to the terminal:

function porti {
    command sudo port install $@ >> $1.log 2>&1; cat $1.log
}

Is there a way to do this concurrently?

BTW I pass $@ to install but only $1 for the file name so that I can do something like:

porti git-gore +bash_completion

and only get the file git-core.log however someone else might prefer to include variants in the file name...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

决绝 2024-09-10 02:52:49

通常的解决方案是使用 tee(1)

sudo port install $@ 2>&1 | tee -a $1.log

应该做你想做的

The usual solution is to use tee(1):

sudo port install $@ 2>&1 | tee -a $1.log

should do what you want

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