Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

Bash If...Else


Using If...Else Statements in Bash

This section explains how to use conditional statements in Bash scripting.


If Statements

If statements allow you to execute code based on a condition. If the condition is true, the code block will run.

The condition is enclosed in square brackets[ ] and the statement ends withfi, which isif spelled backward, marking the end of the if block.

Example: If Statement

# Basic if statementnum=15if [ $num -gt 10 ]; then  echo "Number is greater than 10"fi

If...Else Statements

If...else statements provide a way to execute one block of code if a condition is true and another block if it is false.

Theelse keyword introduces the alternative block, and the statement ends withfi.

Example: If...Else Statement

# If...else statementnum=8if [ $num -gt 10 ]; then  echo "Number is greater than 10"else  echo "Number is 10 or less"fi


Elif Statements

Elif statements allow you to check multiple conditions in sequence. If the first condition is false, the next one is checked.

Theelif keyword stands for "else if," and the statement still ends withfi.

Example: Elif Statement

# If...elif...else statementnum=10if [ $num -gt 10 ]; then  echo "Number is greater than 10"elif [ $num -eq 10 ]; then  echo "Number is exactly 10"else  echo "Number is less than 10"fi

Nested If Statements

Nested if statements allow you to place an if statement inside another if statement, enabling more complex logic.

Each if block must be closed with its ownfi.

Example: Nested If Statement

# Nested if statementnum=5if [ $num -gt 0 ]; then  if [ $num -lt 10 ]; then    echo "Number is between 1 and 9"  fifi



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp