blob: afb88818c72bc51f6269097c09168abc03702e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
[ -d usr/share/mime ] || exit 0
cd /usr/share/mime
rm -rf globs globs2 icons treemagic generic-icons types magic XMLnamespaces \
subclasses aliases mime.cache \
application audio image inode message model multipart text video \
x-content x-epoc
rmdir packages
cd /
rmdir usr/share/mime 2>/dev/null
exit 0
|