Bash Expressions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * bash =Difference between <tt>-a</tt> and <tt>&&</tt>= If want to combine the results of multiple command executions in an <tt>if</tt> conditi...")
 
 
(28 intermediate revisions by the same user not shown)
Line 2: Line 2:


* [[bash#Subjects|bash]]
* [[bash#Subjects|bash]]
* [[bash if|if]]


=Difference between <tt>-a</tt> and <tt>&&</tt>=
=Conditional Expressions=


If want to combine the results of multiple command executions in an <tt>if</tt> condition, use <tt>&&</t>, not <tt>-a</tt>.
==Difference between <tt>-a</tt> and <tt>&&</tt>==
 
If want to combine the results of multiple command executions in an <tt>if</tt> condition, use <tt>&&</tt>, not <tt>-a</tt>.


Example:
Example:
Line 14: Line 17:
fi
fi
</pre>
</pre>
<tt>-a</tt> should be used in <tt>test</tt> expressions:
<pre>
if [ -f /file.txt -a -x /file.txt ]; then
  ...
fi
</pre>
==<span id='.5B.5B....5D.5D'></span>&#91;[...]] Extended Test Command==
{{External|http://mywiki.wooledge.org/BashFAQ/031}}
[ and "test" are equivalent: [...] is part of the shell built-in command [[bash test|test]]. &#91;[ is a keyword rather than a program, and it is called the ''extended test command''. [ and &#91;[ have much in common and share many expression operators like "-f", "-s", "-n", and "-z".
Notable differences:
* &#91;[ allows =~ and regular expression matching.
* Variables do not have to be quoted inside &#91;[...]] because &#91;[ handles empty strings or strings with spaces more intuitively.
* < and > can be used for [[Bash_test#String_Comparison|string comparison]].
This is a systematic comparison of the &#91;[...]]'s feature compared with  &#91;...]:
===String Comparison===
====>====
[[ a > b ]] || echo "a does not come after b"
====<====
[[ az < za ]] && echo "az comes before za"
==== = (or ==)====
[[ a = a ]] && echo "a equals a"
====!=====
[[ a != b ]] && echo "a is not equal to b"
===Integer Comparison===
====-gt====
[[ 5 -gt 10 ]] || echo "5 is not bigger than 10"
====-lt====
[[ 8 -lt 9 ]] && echo "8 is less than 9"
====-ge====
[[ 3 -ge 3 ]] && echo "3 is greater than or equal to 3"
====-le====
[[ 3 -le 8 ]] && echo "3 is less than or equal to 8"
====-eq====
[[ 5 -eq 05 ]] && echo "5 equals 05"
====-ne====
[[ 6 -ne 20 ]] && echo "6 is not equal to 20"
===Conditional Evaluation===
====&&====
<syntaxhighlight lang='bash'>
[[ -n ${var} && -f ${var} ]] && echo "${var} is a file"
</syntaxhighlight>
====||====
<syntaxhighlight lang='bash'>
[[ -b ${var} || -c ${var} ]] && echo "${var} is a device"
</syntaxhighlight>
===Combining Conditional Evaluation with Command Result===
A test expression can be combined with a regular command result by using &#91;[...]] around the test expression and combining the resulted expression with the command, as follows:
<syntaxhighlight lang='bash'>
if [[ -f ./a ]] && ! diff -q ./a ./b >/dev/null; then
  # ...
fi
</syntaxhighlight>
===Expression Grouping===
[[ ${var} = img* && (${var} = *.png || ${var} = *.jpg) ]] && echo "${var} starts with img and ends with .jpg or .png"
===Pattern Matching===
[[ ${name} = a* ]] || echo "name does not start with an 'a': ${name}"
===Regular Expression Matching===
[[ $(date) =~ ^Fri\ ...\ 13 ]] && echo "It's Friday the 13th!"
=((...))=
{{External|http://tldp.org/LDP/abs/html/dblparens.html}}
The double parentheses construct.
=test=
{{Internal|Bash test#Overview|test}}

Latest revision as of 08:59, 27 March 2020

Internal

Conditional Expressions

Difference between -a and &&

If want to combine the results of multiple command executions in an if condition, use &&, not -a.

Example:

if grep "something" /file1.txt && grep "something" /file2.txt' then
    # "something" exists in both files ...
fi

-a should be used in test expressions:

if [ -f /file.txt -a -x /file.txt ]; then 
  ...
fi

[[...]] Extended Test Command

http://mywiki.wooledge.org/BashFAQ/031

[ and "test" are equivalent: [...] is part of the shell built-in command test. [[ is a keyword rather than a program, and it is called the extended test command. [ and [[ have much in common and share many expression operators like "-f", "-s", "-n", and "-z".

Notable differences:

  • [[ allows =~ and regular expression matching.
  • Variables do not have to be quoted inside [[...]] because [[ handles empty strings or strings with spaces more intuitively.
  • < and > can be used for string comparison.

This is a systematic comparison of the [[...]]'s feature compared with [...]:

String Comparison

>

[[ a > b ]] || echo "a does not come after b"

<

[[ az < za ]] && echo "az comes before za"

= (or ==)

a = a  && echo "a equals a"

!=

a != b  && echo "a is not equal to b"

Integer Comparison

-gt

5 -gt 10  || echo "5 is not bigger than 10"

-lt

8 -lt 9  && echo "8 is less than 9"

-ge

3 -ge 3  && echo "3 is greater than or equal to 3"

-le

3 -le 8  && echo "3 is less than or equal to 8"

-eq

5 -eq 05  && echo "5 equals 05"

-ne

6 -ne 20  && echo "6 is not equal to 20"


Conditional Evaluation

&&

[[ -n ${var} && -f ${var} ]] && echo "${var} is a file"

||

[[ -b ${var} || -c ${var} ]] && echo "${var} is a device"

Combining Conditional Evaluation with Command Result

A test expression can be combined with a regular command result by using [[...]] around the test expression and combining the resulted expression with the command, as follows:

if [[ -f ./a ]] && ! diff -q ./a ./b >/dev/null; then
  # ...
fi

Expression Grouping

[[ ${var} = img* && (${var} = *.png || ${var} = *.jpg) ]] && echo "${var} starts with img and ends with .jpg or .png"

Pattern Matching

[[ ${name} = a* ]] || echo "name does not start with an 'a': ${name}"

Regular Expression Matching

$(date) =~ ^Fri\ ...\ 13  && echo "It's Friday the 13th!"

((...))

http://tldp.org/LDP/abs/html/dblparens.html

The double parentheses construct.

test

test