Shell Programming Learning: branching structure and looping structure

Source: Internet
Author: User

One. If structure

1. Single branch structure

If condition
then
    statement1
    statement2
    ...
Fi

2. Dual-Branch structure

If condition
then
    statement1
    statement2
    ...
else
    statement3
    statement4
fi

3. Multi-branch structure

If condition
then 
    statement
elif    condition2 then statement2
fi

Second: Case structure

Case condition in
pattern1)
    statment
    ;;
PATTERN2)
    statement2
    ;;
....
Esac

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/OS/Linux/

Three: The while statement of the loop structure

1. When-type loop structure (while)

While condition
do
    statement1
    statement2
... Done

Executes when condition is true

2. Until the type cycle structure (until)

Until condition
do
    statement1
    statement2
Done

When the condition to meet the end

Base provides two circular control statements, break: Used to jump out of loop control, continue: Just end this loop, and start the next round of loops.

3.foreach Loops and Counting loops

For variable in wordlist
do
    statement1
    statement2
    ...
Done

In the structure in wordlist can be omitted, omitted after the equivalent in "$@"

4: For loop structure in C language

For ((EXP1;EXP2;EXP3))
do
    statment1
    statment2
... Done
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.