68

I stumbled upon an example, which needed to be compiled with the additional option --shell-escape. Using this option it worked just fine, but I'm curious:

Why or when is this option needed and what does it actually do?

yo'
  • 51,322
rtzll
  • 5,531

1 Answers1

57

Sometimes, it is useful to be able to run external commands from inside the tex file : it allows for example to externalize some typesetting, or to use external tools like bibtex. This is available via the \write18 tex primitive.

The problem is that it allows for almost everything. A tex file is meant to be portable, and one shouldn't have to fear any security issue when compiling a third-party file. So by default, this primitive is disabled.

If an user needs to use it, he needs to explicitely tell the compiler that he trusts the author of the file with shell interaction, and that's exactly the point of the optional --shell-escape argument.

T. Verron
  • 13,552
  • 1
    Can you please provide a working example where we can see how is this command written inside a LaTeX document? I would really appreciate it. – codeaviator Jun 29 '16 at 15:21
  • 1
    You can for example see the end of the last snippet in this answer where they use \write18 to compile a .tex into .dvi and convert the .dvi to .ps to .pdf. – T. Verron Jun 29 '16 at 19:44