#!/bin/bash i=3 if [ $i -eq 2 ] then echo "$i ist 2" elif [ $i -eq 3 ] then echo "$i ist 3" else echo "$i ist weder 2 noch 3" fi