change preposition

"same as" sounds better than "same than"
This commit is contained in:
Karel Vlk 2016-01-19 15:49:58 +01:00
parent 8823449da0
commit 9301f63a43
1 changed files with 2 additions and 2 deletions

View File

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