Fixed typo in Bash Beginners Guide

This commit is contained in:
Florian Bastien 2016-02-24 16:10:27 +01:00
parent c9f0cc41f2
commit 0c4a0b1e34
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
<row><entry>[ <filename>FILE1</filename> <option>-ot</option> <filename>FILE2</filename> ]</entry><entry>True if <filename>FILE1</filename> is older than <filename>FILE2</filename>, or is <filename>FILE2</filename> exists and <filename>FILE1</filename> does not.</entry></row>
<row><entry>[ <filename>FILE1</filename> <option>-ef</option> <filename>FILE2</filename> ]</entry><entry>True if <filename>FILE1</filename> and <filename>FILE2</filename> refer to the same device and inode numbers.</entry></row>
<row><entry>[ <option>-o</option> OPTIONNAME ]</entry><entry>True if shell option <quote>OPTIONNAME</quote> is enabled.</entry></row>
<row><entry><option>[ -z</option> STRING ]</entry><entry>True if the length if <quote>STRING</quote> is zero.</entry></row>
<row><entry><option>[ -z</option> STRING ]</entry><entry>True if the length of <quote>STRING</quote> is zero.</entry></row>
<row><entry><option>[ -n</option> STRING ] or [ STRING ]</entry><entry>True if the length of <quote>STRING</quote> is non-zero.</entry></row>
<row><entry>[ STRING1 == STRING2 ] </entry><entry>True if the strings are equal. <quote>=</quote> may be used instead of <quote>==</quote> for strict POSIX compliance.</entry></row>
<row><entry>[ STRING1 != STRING2 ] </entry><entry>True if the strings are not equal.</entry></row>