markdown 将所有控制台输出重定向到文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 将所有控制台输出重定向到文件相关的知识,希望对你有一定的参考价值。

The output of a program could be send to stderr or stdout. In the case you want to manage both separatelly:
```
foo > stdout.txt 2> stderr.txt
```

or if you want in same file for both message streams:

```
foo > allout.txt 2>&1
```

You can also maintain the regular output using 'tee' to split the data flow:

```
foo 2>&1 | tee allout.txt
```

Note: this works in (ba)sh, check your shell for proper syntax

source: https://stackoverflow.com/a/6674348/1407528

以上是关于markdown 将所有控制台输出重定向到文件的主要内容,如果未能解决你的问题,请参考以下文章

markdown [www和https重定向]将所有文件重定向到https url和www域名#www #htaccess

将shell输出重定向到文件[重复]

将输出重定向到文件,然后返回到 Java 中的控制台

我们如何将 Java 程序控制台输出重定向到多个文件?

将所有输出重定向到 Bash 中的文件 [重复]

如何将控制台输出重定向到文本文件