1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/showppastats.sh
2012-09-17 18:03:30 +02:00

20 lines
732 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
TEAM="nowrep"
PACKAGE="qupzilla"
echo ""
echo "Launchpad PPA Statistics"
echo "Team: $TEAM"
echo "Package: $PACKAGE"
echo ""
echo "Oneiric: i386: " $(python ppastats.py $TEAM $PACKAGE oneiric i386|tail -c -2);
echo " amd64: " $(python ppastats.py $TEAM $PACKAGE oneiric amd64|tail -c -2);
echo ""
echo "Natty: i386: " $(python ppastats.py $TEAM $PACKAGE natty i386|tail -c -2);
echo " amd64: " $(python ppastats.py $TEAM $PACKAGE natty amd64|tail -c -2);
echo ""
echo "Maverick: i386: " $(python ppastats.py $TEAM $PACKAGE maverick i386|tail -c -2);
echo " amd64: " $(python ppastats.py $TEAM $PACKAGE maverick amd64|tail -c -2);
echo ""
read -p "Press [ENTER] to close terminal"
exit