Skip to content

Instantly share code, notes, and snippets.

@hasayvaz
Created December 2, 2010 00:41
Show Gist options
  • Save hasayvaz/724536 to your computer and use it in GitHub Desktop.
Save hasayvaz/724536 to your computer and use it in GitHub Desktop.
#!/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