/usr/bin/gnome-codec-install is in gnome-codec-install 0.4.7+nmu1ubuntu3.
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 8 9 10 11 12 | #!/usr/bin/python
import sys
import pygtk
pygtk.require('2.0')
import gtk
from GnomeCodecInstall import Main
if __name__ == "__main__":
Main.main(sys.argv[1:])
|