Shell Numeric operations

Source: Internet
Author: User
Shell arithmetic operation addition Note! ' 4 ' + ' 5 ' between these three should have blank r= ' expr 4 + 5 ' echo $rr =$[4 + 5]echo $rr =$ ((4 + 5)) echo $r multiplication r= ' expr 4 \* 5 ' r=$ ((4 * 5)) r=$[4 * 5]echo $r Division r= ' Expr 40/5 ' r=$ ((40/5)) r=$[40/5]echo $r subtraction r= ' expr 40-5 ' r=$ ((40-5)) r=$[40-5]echo $r seeking remainder R =$[]echo $r (e.g. 2 of 3 Parties) r=$ ((2 * 3)) r=$[2 * 3]echo $r Note: Expr does not have the same weight 4: Add with let command: N=10let n=n+1echo $n #n =1 1 multiplication: Let M=n*10echo $m Division: let R=m/10echo $r seeking remainder: Let R=m%7echo $r multiply emerges: let R=2**2echo $r

Shell Numeric operations

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.