2
1.364
#!/bin/bash read -p "Is this ok [y/N]:" CONT if [ "$CONT" == "y" ]; then echo "yes geldi..."; else echo "no geldi..."; fi