Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
395 views
in Technique[技术] by (71.8m points)

bash - 在Bash中重定向stderr和stdout(Redirect stderr and stdout in Bash)

I want to redirect both stdout and stderr of a process to a single file.

(我想将一个进程的stdout和stderr都重定向到一个文件。)

How do I do that in Bash?

(我该如何在Bash中做到这一点?)

  ask by flybywire translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Take a look here .

(在这里看看。)

Should be:

(应该:)

yourcommand &>filename

(redirects both stdout and stderr to filename).

((将stdoutstderr都重定向到文件名)。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...