82

I'm trying to get the mime type of a file from the command line as a printed string (eg. application/vnd.oasis.opendocument.spreadsheet).

I looked up how to do this and found the xdg-mime command.

From reading the man page (man xdg-mime), it seems I should run xdg-mime query filetype FILE. However, when I run this with any file it prints nothing and exits.

Is there a way to fix this? An alternative command?

dv3500ea
  • 36,816
  • 13
  • 99
  • 152

4 Answers4

148

Use file --mime-type -b filename

Look at file --help for more tips.

Oli
  • 289,791
  • 117
  • 680
  • 835
5
mimetype /path/to/file

Tested in 18.04

cipricus
  • 3,102
  • 1
  • 25
  • 70
5

The great answer on this page can be put in a function or script like so:

Example

$ mime_type.sh /etc/passwd  
text/plain

mime_type.sh

function mime_type()
{
  file --mime-type -b $*
}

mime_type $*
brad parks
  • 2,397
  • 3
  • 18
  • 16
4

xdg-mime and file query different databases (xdg-mime is more comprehensive). See Why the difference between the results with "file --mime-type" and "xdg-mime query filetype"? for more discussion.

xdg-mime does not work correctly from a non-desktop session (e.g. if you're SSH'd into a machine).

gerardw
  • 417
  • 3
  • 9