Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
#!/bin/bash
echo "bir sayi giriniz: "
read x
echo "ikinci sayiyi giriniz: "
read y
echo "islem giriniz: "
read z
if [ $z = "topla" ]
then
echo $(($x + $y))
elif [ $z = "cikar" ]
then
echo $(($x - $y))
elif [ $z = "carp" ]
then
echo $(($x * $y))
else
echo $(($x / $y))
fi