Bash Expressions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 30: Line 30:
{{External|http://mywiki.wooledge.org/BashFAQ/031}}
{{External|http://mywiki.wooledge.org/BashFAQ/031}}


[ and "test" are equivalent. [[]] is a keyword rather than a program.
[ and "test" are equivalent. [[ is a keyword rather than a program. [ and [[ have much in common and share many expression operators like "-f", "-s", "-n", and "-z".

Revision as of 19:52, 20 February 2018

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

[[...]]

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

[ and "test" are equivalent. [[ is a keyword rather than a program. [ and [[ have much in common and share many expression operators like "-f", "-s", "-n", and "-z".