This file is indexed.

/usr/share/konwert/devel/mime is in konwert-dev 1.8-13.

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
#!/bin/bash -

case $1 in
(ascii)      echo "us-ascii";;
(iso?|iso??) echo "iso-8859-${1#iso}";;
(cp????)     echo "windows-${1#cp}";;
(cp???)      echo "$1";;
(koi8*)      echo "koi8-${1#koi8}";;
(*)          echo "x-$1";;
esac