/usr/bin/kdelnk2desktop.py is in kdesdk-scripts 4:4.13.0-0ubuntu1.
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 13 14 15 16 17 18 19 20 21 | #! /usr/bin/env python
import os, sys, string
def help():
print "Usage: %s <filename>.kdelnk ..." % sys.argv[0]
if len(sys.argv) < 2:
help()
sys.exit()
for fn in sys.argv[1:]:
print "Doing %s ..." % fn
f = open(fn, 'r').readlines()
if string.find(f[0], "# KDE Config") == 0:
p = open(fn, 'w')
p.writelines(f[1:])
p.close()
os.rename(fn, fn[:-6]+'desktop')
|