api: add usercount function

pull/562/head
Botspot 4 years ago
parent 79d2cb0d4b
commit 07eeb76cb5

16
api

@ -114,7 +114,7 @@ app_categories() { #lists all apps in a virtual filesystem based on categories f
#category file cleaned up past this point
#show normal categories
cat "${DIRECTORY}/data/categories/structure" | grep . | awk -F'|' '{print $2"/"$1}'
cat "${DIRECTORY}/data/categories/structure" | grep . | awk -F'|' '{print $2"/"$1}' | sed 's+^/++g'
#show special Installed category
list_apps installed | sed 's+^+Installed/+g'
@ -123,3 +123,17 @@ app_categories() { #lists all apps in a virtual filesystem based on categories f
list_apps cpu_installable | sed 's+^+All Apps/+g'
}
usercount() { # $1 is app name. if empty, all are shown.
clicklist="$(wget -qO- 'https://raw.githubusercontent.com/Botspot/pi-apps-analytics/main/clicklist')"
[ -z "$clicklist" ] && error "usercount: clicklist empty. Likely no internet connection"
if [ -z "$1" ];then
echo "$clicklist"
else
# $1 is app
echo "$clicklist" | grep " $1"'$' | awk '{print $1}' | head -n1
fi
}

Loading…
Cancel
Save