在 Unix 中如何同时写入文件并打印到终端?
我有一个小的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常的解决方案是使用 tee(1):
应该做你想做的
The usual solution is to use tee(1):
should do what you want