Shell Test Command

Source: Internet
Author: User
Tags logical operators
The test command in the shell is used to check if a condition is true, and it can be tested in three aspects of numeric, character, and file.
Num1=100num2=100if Test $[num1]-eq $[num2]then    echo ' two numbers equal! ' Else    Echo ' two numbers are not equal! ' Fi
Output:
two numbers equal!
file test
Cd/binif test-e./bashthen    echo ' file already exists! ' else    echo ' file does not exist! ' Fi
Output:
file already exists!
In addition, the shell is provided with (-a), or (-O), non (!) Three logical operators are used to connect test conditions with a priority of: "!" Highest, "-a" followed, "-O" the lowest. For example:
Cd/binif test-e./notfile-o-E./bashthen    Echo ' has a file present! ' else    echo ' Two files do not exist ' fi
Output:
There is a file present!

Shell Test Command

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.