fixing dilemma and a stray helping verb

This commit is contained in:
Martin A. Brown 2016-02-12 10:56:21 -08:00
parent cee57524e7
commit 4d5dcc5145
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
basic-intermediate shell scripts. It does not intend to be an
advanced document (see the title). I am NOT an expert nor guru
shell programmer. I decided to write this because I'll learn a
lot and it might be useful to other people. Any feedback will is
lot and it might be useful to other people. Any feedback is
appreciated, especially in the patch or pull request form. :)
</abstract>
@ -234,7 +234,7 @@ Pipes
<sect1>
Sample: an alternative to ls -l *.txt
<p> Probably, this is a more difficult way to do ls -l *.txt, but it is here for illustrating pipes,
not for solving such listing dillema.
not for solving such listing dilemma.
<tscreen><verb>
ls -l | grep "\.txt$"
</verb></tscreen>