11 lines
152 B
Bash
Executable File
11 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# killall wificheck.sh &> /dev/null
|
|
|
|
if ping -w 1 archlinux.org &> /dev/null
|
|
then
|
|
printf "$(checkupdates | wc -l)"
|
|
else
|
|
echo " "
|
|
fi
|