summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/iexec/iexec.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/iexec/iexec.tex')
-rw-r--r--Master/texmf-dist/doc/latex/iexec/iexec.tex12
1 files changed, 10 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/latex/iexec/iexec.tex b/Master/texmf-dist/doc/latex/iexec/iexec.tex
index cc58780c239..0b9d0470264 100644
--- a/Master/texmf-dist/doc/latex/iexec/iexec.tex
+++ b/Master/texmf-dist/doc/latex/iexec/iexec.tex
@@ -27,7 +27,7 @@
\usepackage{ffcode}
\title{\ff{iexec}: \LaTeX{} Package \\ for Inputable Shell Executions}
\author{Yegor Bugayenko}
-\date{0.4.1 2022/01/02}
+\date{0.5.0 2022/01/08}
\begin{document}
\pagenumbering{gobble}
\raggedbottom
@@ -66,7 +66,7 @@ The output of your code is saved into the file provided as the
second optional argument of \ff{\char`\\iexec} (the default value is \ff{iexec.tmp}):
\begin{ffcode}
-Today is \iexec[date.txt]{date +\%e-\%b-\%Y | tr -d '\\n'}.
+Today is \iexec[stdout=date.txt]{date +\%e-\%b-\%Y | tr -d '\\n'}.
\end{ffcode}
The tailing part of the command here removes all ends-of-line.
@@ -75,6 +75,14 @@ The file specified will be deleted right after its usage. If you don't
want this to happen, use \ff{trace} package option: all files will remain
in the directory.
+There are a few options you can provide for the \ff{\char`\\iexec} command:
+
+\begin{itemize}
+ \item \ff{trace}: to prevent the deletion of the file;
+ \item \ff{stdout=...}: to set the name of the file where the standard output of the command will be saved;
+ \item \ff{quiet}: to prevent including of the content into the document.
+\end{itemize}
+
More details about this package you can find
in the \ff{yegor256/iexec} GitHub repository.