#!/bin/dash updates=$(checkupdates | wc -l) if [ -z "$updates" ]; then printf "Fully Updated" else printf "$updates updates" updates fi