/usr/share/games/fretsonfire/game/svg2png.py is in fretsonfire-game 1.3.110.dfsg2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #!/usr/bin/python
import os, fnmatch
for root, dirs, files in os.walk("."):
for svg in fnmatch.filter(files, "*.svg"):
svg = os.path.join(root, svg)
print svg, os.system("inkscape -e '%s' -D '%s' -b black -y 0.0" % (svg.replace(".svg", ".png"), svg))
|