Created
December 2, 2010 00:41
-
-
Save hasayvaz/724536 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
$cat>bilbakalim | |
echo “Bir deger sayi giriniz” | |
read sayi | |
if [ $sayi -eq 0 ]; then | |
echo “sayi sıfır” | |
elif [ $sayi -gt 0 ]; then | |
echo “Sayi Pozitif” | |
else | |
echo "sayi negatif" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment