DEVOPS/25_03_11/elif.sh
2025-03-25 11:06:02 +01:00

13 lines
182 B
Bash

#!/bin/bash
read -p "Gyümölcs: " fruit
if [ "$fruit" = "alma" ]; then
echo "Ez alma"
elif [ "$fruit" = "korte"]; then
echo "Ez körte"
else
echo "Nem alma és nem körte"
fi