7 lines
108 B
Bash
7 lines
108 B
Bash
#!/bin/bash
|
|
|
|
wget -q www.google.se -O /dev/null
|
|
if [ $? -eq 0 ]; then
|
|
echo "Internet verkar fungera"
|
|
fi
|