本文介绍了Shell脚本:如何在控制台上将字符串写入文件和stdout?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在控制台上将字符串写入文件和 stdout ?

How to write a string to file and to stdout on console?

如果我这样做

echo "hello" > logfile.txt

我只能在 logfile.txt 中查看 hello ,但是如何在Linux控制台上也可以编写 hello ?

I view only hello in logfile.txt but how can I write hello also on console of Linux?

推荐答案

使用 tee 命令:

echo "hello" | tee logfile.txt

这篇关于Shell脚本:如何在控制台上将字符串写入文件和stdout?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 12:14