9sm
Results
1
issues of
9sm
normalmente funciona ------------------------------------------------------ #!/bin/bash while true; do read -p "Ping Yahoo? [y|n]:" yn case $yn in [Yy]* ) ping www.yahoo.com; break;; [Nn]* ) exit;; * ) echo "Choose yes or...