Fixed typo in Bash Prog Intro How-to

This commit is contained in:
Florian Bastien 2015-12-07 17:39:23 +01:00
parent d204a567bf
commit 603bdbd8b6
1 changed files with 2 additions and 2 deletions

View File

@ -156,8 +156,8 @@ All about redirection
<sect1>
Sample: stdout 2 stderr
<p> This will cause the stderr ouput of a program to be written to the same filedescriptor
than stdout.
<p> This will cause the stdout ouput of a program to be written to the same filedescriptor
than stderr.
<tscreen><verb>
grep da * 1>&2
</verb></tscreen>