16 lines
595 B
Bash
16 lines
595 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
##################################################################################################################
|
||
|
# Author : Archos
|
||
|
# Website : https://arch-linux.cz
|
||
|
##################################################################################################################
|
||
|
##################################################################################################################
|
||
|
# Získá počet dostupných aktualizací
|
||
|
updates=$(checkupdates | wc -l)
|
||
|
|
||
|
if [ "$updates" -gt 0 ]; then
|
||
|
echo "$updates updates available"
|
||
|
else
|
||
|
echo "System up-to-date"
|
||
|
fi
|