Parentheses and instances in a shell script

Source: Internet
Author: User

1, single parenthesis and double parenthesis

The double parenthesis command allows advanced mathematical expressions to be put into a comparison. The format is as follows:

((expression))

In addition to the standard mathematical operators used by the test command (If-then []), double parentheses support the following common operators:

val++/val--post-increase/post-reduction

++val//--val first increase/decrease first

! Logical negation

-Position Negation

XX Power operation

<< Left displacement

>> Right Displacement

& Bit Boolean and

| Bit Boolean or

&& Logic and

|| Logical OR

#!/bin/bashcount=0for line1 in $ (cat "$WORK _dir/rpm_list_file") do       cat $line 1        count=$ (($count + 1))       echo "# # # $count # # "       if [$count-ge 6];then           echo" Test finished! "           Break       Fidone

2, the square brackets and the two-sided brackets

[[Expression]]

Expression in both brackets is compared using the standard string used in the test command, but also provides a "pattern match (matching)"

if [[] $USER = = c*]];  then    Echo " Hello, $USER " Else    Echo " Sorry. I don ' t know you! " fi

Parentheses and instances in a shell script

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.