/usr/share/cinnamon/cinnamon-settings/bin/removeSchema.py is in cinnamon-common 3.6.7-8ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #! /usr/bin/python2
import os
import sys
os.system("rm /usr/share/glib-2.0/schemas/%s" % (sys.argv[1]))
os.system("glib-compile-schemas /usr/share/glib-2.0/schemas/")
|