« Script Bash : pingg.sh » : différence entre les versions
De www.yakakliker.org
(Page créée avec « <syntaxhighlight lang="bash"> #!/bin/bash while ! ping -c 1 192.168.237.77 > /dev/null 2>&1 do printf "%c" "." done echo "Fin" </syntaxhighlight> ») |
Aucun résumé des modifications |
||
Ligne 10 : | Ligne 10 : | ||
echo "Fin" | echo "Fin" | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Catégorie:Bash]] | |||
[[Catégorie:Scripts]] |
Version du 6 novembre 2024 à 17:58
#!/bin/bash
while ! ping -c 1 192.168.237.77 > /dev/null 2>&1
do
printf "%c" "."
done
echo "Fin"