You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
361 B
22 lines
361 B
15 years ago
|
#! /usr/bin/env python
|
||
|
|
||
|
import os, sys, string
|
||
|
|
||
|
def help():
|
||
|
print "Usage: %s <filename>.kdelnk ..."
|
||
|
|
||
|
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')
|