Determine rdf mime-types in bash












3














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?










share|improve this question


















  • 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
















3














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?










share|improve this question


















  • 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














3












3








3







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?










share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 12 '18 at 9:50









J.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














  • 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












1 Answer
1






active

oldest

votes


















2














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.






share|improve this answer





















  • 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 run update-mime-database afterwards.
    – Socowi
    Nov 12 '18 at 13:47











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
});


}
});














draft saved

draft discarded


















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









2














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.






share|improve this answer





















  • 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 run update-mime-database afterwards.
    – Socowi
    Nov 12 '18 at 13:47
















2














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.






share|improve this answer





















  • 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 run update-mime-database afterwards.
    – Socowi
    Nov 12 '18 at 13:47














2












2








2






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.






share|improve this answer












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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 12 '18 at 10:20









Socowi

6,1602724




6,1602724












  • 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 run update-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






  • 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
















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


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini