Comment 2 for bug 1258088

Revision history for this message
Harald Sitter (apachelogger) wrote :

The following script will list all runners with python

for sDir in `kde4-config --path services | tr : '\n'`; do echo "checking $sDir"; for dFile in `grep -rl 'Plasma/Runner' /usr/share/kde4/services/`; do grep -ri python $dFile; done ; done