#!/bin/bash

i=20
if [ $i -gt 10 ] 
then
    echo "$i 10 dan büyüktür"
fi

x=10
if (( $x % 2 == 0 )) 
then
    echo "$x 2 ile bölümünden kalan sıfır olduğu için cift sayıdır (mod almak)"
fi

x=10
if (( $x != 1 ))
then
    echo "$x 1'e eşit değildir"
fi

x=10
if (( $x != 1 ))
then
    echo "$x 1'e eşit değildir"
else
    echo "$x 1'e eşittir"
fi

2 Comments

altogel · 23/01/2025 at 06:08

… [Trackback]

[…] Read More here on that Topic: durukanbal.com/2021/01/27/bash-if-syntax-example/ […]

dark168 · 25/01/2025 at 12:45

… [Trackback]

[…] Read More on on that Topic: durukanbal.com/2021/01/27/bash-if-syntax-example/ […]

Leave a Reply

Avatar placeholder