User Tools

Site Tools


bash:if...then...else

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:if...then...else [2021/01/26 12:27] – [Example] peterbash:if...then...else [2021/05/28 08:42] (current) peter
Line 38: Line 38:
 **NOTE:**  The above program will only show the output if the number entered is greater than ten. **NOTE:**  The above program will only show the output if the number entered is greater than ten.
  
-The **<nowiki>[[ ]]</nowiki>** are required!+The space around the **<nowiki>[[ ]]</nowiki>** are required!
  
   * **-gt**:  stands for greater than;   * **-gt**:  stands for greater than;
Line 70: Line 70:
 </code> </code>
  
-The **else** part needs to be placed after the action part of **if** and before **fi**.+<WRAP info> 
 +**NOTE:**  The **else** part needs to be placed after the action part of **if** and before **fi**. 
 +</WRAP> 
  
 ---- ----
Line 94: Line 97:
 fi fi
 </code> </code>
 +
 +----
 +
 +===== AND =====
 +
 +Use **&&**.
 +
 +<code bash>
 +#!/bin/bash
 +
 +echo -n "Enter Number:"
 +read num
 +
 +if [[ ( $num -lt 10 ) && ( $num%2 -eq 0 ) ]]; then
 +echo "Even Number"
 +else
 +echo "Odd Number"
 +fi
 +</code>
 +
 +----
 +
 +===== OR =====
 +
 +Use **||**.
 +
 +
 +<code bash>
 +#!/bin/bash
 +
 +echo -n "Enter any number:"
 +read n
 +
 +if [[ ( $n -eq 15 || $n -eq 45 ) ]]
 +then
 +echo "You won"
 +else
 +echo "You lost!"
 +fi
 +</code>
 +
 +----
 +
 +===== References =====
  
 See [[BASH:Switch|Switch]] See [[BASH:Switch|Switch]]
  
bash/if...then...else.1611664025.txt.gz · Last modified: 2021/01/26 12:27 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki