Determine rdf mime-types in bash
I am writing a bash script, that needs to check the different mime-types of different files. The files should support rdf4j REST API (http://docs.rdf4j.org/rest-api/#_content_types).
Normally, using file --mime-type <file>
provides the correct mime type. However, when running on a .ttl file, it returns wrong: foo.ttl: text/plain
instead of text/turtle
Does it exist a better way to solve this, then checking every file-ending, for each file?
bash unix rdf rdf4j
add a comment |
I am writing a bash script, that needs to check the different mime-types of different files. The files should support rdf4j REST API (http://docs.rdf4j.org/rest-api/#_content_types).
Normally, using file --mime-type <file>
provides the correct mime type. However, when running on a .ttl file, it returns wrong: foo.ttl: text/plain
instead of text/turtle
Does it exist a better way to solve this, then checking every file-ending, for each file?
bash unix rdf rdf4j
1
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55
add a comment |
I am writing a bash script, that needs to check the different mime-types of different files. The files should support rdf4j REST API (http://docs.rdf4j.org/rest-api/#_content_types).
Normally, using file --mime-type <file>
provides the correct mime type. However, when running on a .ttl file, it returns wrong: foo.ttl: text/plain
instead of text/turtle
Does it exist a better way to solve this, then checking every file-ending, for each file?
bash unix rdf rdf4j
I am writing a bash script, that needs to check the different mime-types of different files. The files should support rdf4j REST API (http://docs.rdf4j.org/rest-api/#_content_types).
Normally, using file --mime-type <file>
provides the correct mime type. However, when running on a .ttl file, it returns wrong: foo.ttl: text/plain
instead of text/turtle
Does it exist a better way to solve this, then checking every file-ending, for each file?
bash unix rdf rdf4j
bash unix rdf rdf4j
asked Nov 12 '18 at 9:50
J.doeJ.doe
234
234
1
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55
add a comment |
1
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55
1
1
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55
add a comment |
1 Answer
1
active
oldest
votes
You can use an alternative to file
, for instance mimetype
.
At least the following example file from the wikipedia entry on .ttl is recognized as text/turtle
:
$ cat test.ttl
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/stuff/1.0/> .
<http://www.w3.org/TR/rdf-syntax-grammar>
dc:title "RDF/XML Syntax Specification (Revised)" ;
ex:editor [
ex:fullname "Dave Beckett";
ex:homePage <http://purl.org/net/dajobe/>
] .
$ mimetype test.ttl
test.ttl: text/turtle
mimetype
is provided by the package perl-file-mimeinfo
in arch linux and by libfile-mimeinfo-perl
on debian and ubuntu.
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
You can add mime types manually by editing/etc/mime.types
or creating your own/usr/share/mime/text/yourfiletype.xml
(see/usr/share/mime/text/turtle.xml
for an example). You might need to runupdate-mime-database
afterwards.
– Socowi
Nov 12 '18 at 13:47
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53259541%2fdetermine-rdf-mime-types-in-bash%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use an alternative to file
, for instance mimetype
.
At least the following example file from the wikipedia entry on .ttl is recognized as text/turtle
:
$ cat test.ttl
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/stuff/1.0/> .
<http://www.w3.org/TR/rdf-syntax-grammar>
dc:title "RDF/XML Syntax Specification (Revised)" ;
ex:editor [
ex:fullname "Dave Beckett";
ex:homePage <http://purl.org/net/dajobe/>
] .
$ mimetype test.ttl
test.ttl: text/turtle
mimetype
is provided by the package perl-file-mimeinfo
in arch linux and by libfile-mimeinfo-perl
on debian and ubuntu.
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
You can add mime types manually by editing/etc/mime.types
or creating your own/usr/share/mime/text/yourfiletype.xml
(see/usr/share/mime/text/turtle.xml
for an example). You might need to runupdate-mime-database
afterwards.
– Socowi
Nov 12 '18 at 13:47
add a comment |
You can use an alternative to file
, for instance mimetype
.
At least the following example file from the wikipedia entry on .ttl is recognized as text/turtle
:
$ cat test.ttl
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/stuff/1.0/> .
<http://www.w3.org/TR/rdf-syntax-grammar>
dc:title "RDF/XML Syntax Specification (Revised)" ;
ex:editor [
ex:fullname "Dave Beckett";
ex:homePage <http://purl.org/net/dajobe/>
] .
$ mimetype test.ttl
test.ttl: text/turtle
mimetype
is provided by the package perl-file-mimeinfo
in arch linux and by libfile-mimeinfo-perl
on debian and ubuntu.
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
You can add mime types manually by editing/etc/mime.types
or creating your own/usr/share/mime/text/yourfiletype.xml
(see/usr/share/mime/text/turtle.xml
for an example). You might need to runupdate-mime-database
afterwards.
– Socowi
Nov 12 '18 at 13:47
add a comment |
You can use an alternative to file
, for instance mimetype
.
At least the following example file from the wikipedia entry on .ttl is recognized as text/turtle
:
$ cat test.ttl
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/stuff/1.0/> .
<http://www.w3.org/TR/rdf-syntax-grammar>
dc:title "RDF/XML Syntax Specification (Revised)" ;
ex:editor [
ex:fullname "Dave Beckett";
ex:homePage <http://purl.org/net/dajobe/>
] .
$ mimetype test.ttl
test.ttl: text/turtle
mimetype
is provided by the package perl-file-mimeinfo
in arch linux and by libfile-mimeinfo-perl
on debian and ubuntu.
You can use an alternative to file
, for instance mimetype
.
At least the following example file from the wikipedia entry on .ttl is recognized as text/turtle
:
$ cat test.ttl
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ex: <http://example.org/stuff/1.0/> .
<http://www.w3.org/TR/rdf-syntax-grammar>
dc:title "RDF/XML Syntax Specification (Revised)" ;
ex:editor [
ex:fullname "Dave Beckett";
ex:homePage <http://purl.org/net/dajobe/>
] .
$ mimetype test.ttl
test.ttl: text/turtle
mimetype
is provided by the package perl-file-mimeinfo
in arch linux and by libfile-mimeinfo-perl
on debian and ubuntu.
answered Nov 12 '18 at 10:20
SocowiSocowi
6,8322726
6,8322726
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
You can add mime types manually by editing/etc/mime.types
or creating your own/usr/share/mime/text/yourfiletype.xml
(see/usr/share/mime/text/turtle.xml
for an example). You might need to runupdate-mime-database
afterwards.
– Socowi
Nov 12 '18 at 13:47
add a comment |
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
You can add mime types manually by editing/etc/mime.types
or creating your own/usr/share/mime/text/yourfiletype.xml
(see/usr/share/mime/text/turtle.xml
for an example). You might need to runupdate-mime-database
afterwards.
– Socowi
Nov 12 '18 at 13:47
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
cheers. Your solution makes it pssoble to check mimetype for ttl. But still missing support for nq, trix, n3 etc.
– J.doe
Nov 12 '18 at 13:05
3
3
You can add mime types manually by editing
/etc/mime.types
or creating your own /usr/share/mime/text/yourfiletype.xml
(see /usr/share/mime/text/turtle.xml
for an example). You might need to run update-mime-database
afterwards.– Socowi
Nov 12 '18 at 13:47
You can add mime types manually by editing
/etc/mime.types
or creating your own /usr/share/mime/text/yourfiletype.xml
(see /usr/share/mime/text/turtle.xml
for an example). You might need to run update-mime-database
afterwards.– Socowi
Nov 12 '18 at 13:47
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53259541%2fdetermine-rdf-mime-types-in-bash%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Edit file /etc/magic observe how this is done for other file types and add something for text/turtle
– Marichyasana
Nov 12 '18 at 10:55