0Pricing
Linux Command Line Mastery · Lezione

Istruzioni condizionali: `if`, `else`, `case`

Implementi la logica decisionale negli script usando diversi costrutti condizionali.

Istruzioni condizionali: `if`, `else`, `case` è una lezione Linux Command Line Mastery gratuita su CoddyKit. Questa è la lezione 2 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Linux Command Line Mastery, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Linux Command Line Mastery include 4 lezioni in totale.

Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.

Making Decisions in Scripts

In shell scripting, just like in life, you often need to make decisions. Conditional statements allow your scripts to execute different commands based on whether a certain condition is true or false.

This is crucial for creating flexible and powerful scripts that can adapt to different situations or user inputs.

The Basic `if` Statement

The simplest conditional is the if statement. It checks a condition, and if that condition is true, it executes a block of commands. If false, it skips them.

The basic syntax looks like this:

  • if [ condition ]; then
  • # commands to run if true
  • fi

Remember fi to close the if block!

Simple `if` Example

Let's see a simple if statement in action. This script checks if a variable num is greater than 5.

Try changing the value of num to see how the output changes!

#!/bin/bash

num=7

if [ "$num" -gt 5 ]; then
  echo "Number is greater than 5."
fi

num=3

if [ "$num" -gt 5 ]; then
  echo "Number is greater than 5. (This won't print)"
fi

`if-else`: Two Paths

What if you want to execute one set of commands if a condition is true, and a different set if it's false? That's where else comes in.

The if-else statement provides two distinct paths for your script:

  • if [ condition ]; then
  • # commands if condition is true
  • else
  • # commands if condition is false
  • fi

Using `if-else`

This script uses if-else to determine if a number is even or odd. We use the arithmetic evaluation (( )) for clearer number comparisons and calculations.

The % operator gives the remainder of a division. If num % 2 is 0, it's even!

#!/bin/bash

num=4

if (( num % 2 == 0 )); then
  echo "$num is an even number."
else
  echo "$num is an odd number."
fi

num=9

if (( num % 2 == 0 )); then
  echo "$num is an even number. (This won't print)"
else
  echo "$num is an odd number."
fi

`elif`: Multiple Conditions

Sometimes you have more than two possible outcomes. For these situations, you can use elif (short for "else if") to check multiple conditions sequentially.

The script checks conditions one by one. The first one that's true gets its commands executed, and the rest are skipped.

  • if [ cond1 ]; then ...
  • elif [ cond2 ]; then ...
  • else ...
  • fi

Chain of `elif`

Here's an example using if-elif-else to assign a letter grade based on a score. Notice how the conditions are checked from highest to lowest score.

If a score is 95, the first if condition (>= 90) is met, and it prints "A". The other elif and else blocks are then ignored.

#!/bin/bash

score=85

if [ "$score" -ge 90 ]; then
  echo "Grade: A"
elif [ "$score" -ge 80 ]; then
  echo "Grade: B"
elif [ "$score" -ge 70 ]; then
  echo "Grade: C"
else
  echo "Grade: F"
fi

`case`: Simple Selection

When you have a single variable or expression that can have many possible values, and you want to perform different actions for each value, the case statement is often cleaner than a long if-elif-else chain.

It's great for menu-driven scripts or handling specific input options.

  • case $variable in
  • pattern1) commands ;;
  • pattern2) commands ;;
  • *) default commands ;;
  • esac

Using `case` Statements

This script demonstrates how to use case to respond to different user actions (start, stop, restart). The *) pattern acts as a default, catching any unmatched values.

Each block of commands ends with ;;, which is crucial for the case statement to work correctly.

#!/bin/bash

action="start"

case "$action" in
  "start")
    echo "Starting service..."
    ;;
  "stop")
    echo "Stopping service..."
    ;;
  "restart")
    echo "Restarting service..."
    ;;
  *) # Default case for anything else
    echo "Invalid action: $action"
    ;;
esac

action="status"

case "$action" in
  "start") echo "Starting service..." ;;
  "stop") echo "Stopping service..." ;;
  "restart") echo "Restarting service..." ;;
  *) echo "Invalid action: $action" ;;

esac

Conditional Challenge

Read the script below carefully. What will be the output when this script is run?

#!/bin/bash

color="blue"

if [ "$color" == "red" ]; then
  echo "It's a primary color."
elif [ "$color" == "yellow" ]; then
  echo "It's another primary color."
elif [ "$color" == "blue" ]; then
  echo "Yes, blue is primary!"
else
  echo "Unknown color."
fi

Decisions Made Easy

Great job! You've learned the fundamental ways to add decision-making logic to your shell scripts.

  • if: Executes commands if a condition is true.
  • if-else: Provides two paths, one for true and one for false.
  • elif: Allows chaining multiple conditions for more complex logic.
  • case: A clean way to handle multiple choices based on a single value.

These constructs are essential for writing scripts that can respond dynamically to different inputs and situations.

Domande Frequenti

La lezione «Istruzioni condizionali: `if`, `else`, `case`» è gratuita?

Sì — il testo completo di «Istruzioni condizionali: `if`, `else`, `case`» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Linux Command Line Mastery, passa a CoddyKit PRO. Il corso Linux Command Line Mastery include 4 lezioni in totale.

Cosa imparerò in «Istruzioni condizionali: `if`, `else`, `case`»?

Implementi la logica decisionale negli script usando diversi costrutti condizionali. Eserciti Linux Command Line Mastery con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.

Ho bisogno di esperienza per iniziare Linux Command Line Mastery?

Non è richiesta alcuna esperienza precedente. Linux Command Line Mastery su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 2 di 4.

Quanto tempo richiede la lezione «Istruzioni condizionali: `if`, `else`, `case`»?

La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.

Posso scrivere ed eseguire codice in questa lezione Linux Command Line Mastery?

Sì. Ogni lezione Linux Command Line Mastery include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.

Tutte le lezioni di questo corso

  1. Variabili, input e output
  2. Istruzioni condizionali: `if`, `else`, `case`
  3. Cicli: `for`, `while`, `until`
  4. Funzioni e argomenti negli script di shell
← Torna a Linux Command Line Mastery