User Tools

Site Tools


bash:brackets

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:brackets [2021/01/09 13:54] – [Comparisons between [ and [[] peterbash:brackets [2021/01/09 13:59] (current) – [Rule of Thumb] peter
Line 198: Line 198:
 </code> </code>
  
-As of bash 4.1, string comparisons using < or > respect the current locale when done in <nowiki>[[</nowiki>, but not in <nowiki>[</nowiki> or test. In fact, <nowiki>[</nowiki> and test have never used locale collating order even though past man pages said they did. Bash versions prior to 4.1 do not use locale collating order for <nowiki>[[</nowiki> either. +As of bash 4.1, string comparisons using < or > respect the current locale when done in **<nowiki>[[</nowiki>**, but not in **<nowiki>[</nowiki>** or test. 
 + 
 +In fact, **<nowiki>[</nowiki>** and test have never used locale collating order even though past man pages said they did. 
 + 
 +Bash versions prior to 4.1 do not use locale collating order for **<nowiki>[[</nowiki>** either. 
  
 ---- ----
Line 204: Line 208:
 ===== Rule of Thumb ===== ===== Rule of Thumb =====
  
-As a rule of thumb, [[ is used for strings and files.+As a rule of thumb, **[[** is used for strings and files.
  
 If you want to compare numbers, use an ArithmeticExpression, e.g. If you want to compare numbers, use an ArithmeticExpression, e.g.
Line 214: Line 218:
 </code> </code>
  
-When should the new test command <nowiki>[[</nowiki> be used, and when the old one <nowiki>[</nowiki>?  If portability/conformance to POSIX or the Bourne Shell is a concern, the old syntax should be used.  If on the other hand the script requires BASH, Zsh, or KornShell, the new syntax is usually more flexible, but not necessarily backwards compatible.+When should the new test command <nowiki>[[</nowiki> be used, and when the old one <nowiki>[</nowiki>? 
 + 
 +  If portability/conformance to POSIX or the Bourne Shell is a concern, the old syntax should be used. 
 +  If on the other hand the script requires BASH, Zsh, or KornShell, the new syntax is usually more flexible, but not necessarily backwards compatible.
  
-For reasons explained in the theory section below, any problem with an operator used with <nowiki>[[</nowiki> is an unhandleable parse-time error that will cause bash to terminate, even if the command is never evaluated. +<WRAP info> 
 +**NOTE:**  Any problem with an operator used with **<nowiki>[[</nowiki>** resulting in an unhandleable parse-time error will cause bash to terminate, even if the command is never evaluated. 
 +</WRAP> 
 + 
  
bash/brackets.1610200488.txt.gz · Last modified: 2021/01/09 13:54 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki