diff options
author | Karl Berry <karl@freefriends.org> | 2022-01-08 21:35:47 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-01-08 21:35:47 +0000 |
commit | e20ffca55d8295daca2e358aecccb6959204d17d (patch) | |
tree | 517a30fa437d36b3b97cf1945727b32a143e46c2 /Master/texmf-dist/doc/latex/iexec | |
parent | 01dd06d5c332be293f7fab60a3308d3d9675d10e (diff) |
iexec (8jan22)
git-svn-id: svn://tug.org/texlive/trunk@61539 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/iexec')
-rw-r--r-- | Master/texmf-dist/doc/latex/iexec/DEPENDS.txt | 1 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/iexec/iexec.pdf | bin | 107811 -> 124366 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/iexec/iexec.tex | 12 |
3 files changed, 11 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/latex/iexec/DEPENDS.txt b/Master/texmf-dist/doc/latex/iexec/DEPENDS.txt index 6645129e89c..5fa4f92b5c9 100644 --- a/Master/texmf-dist/doc/latex/iexec/DEPENDS.txt +++ b/Master/texmf-dist/doc/latex/iexec/DEPENDS.txt @@ -1,2 +1,3 @@ hard shellesc +hard pgfkeys hard xkeyval diff --git a/Master/texmf-dist/doc/latex/iexec/iexec.pdf b/Master/texmf-dist/doc/latex/iexec/iexec.pdf Binary files differindex 8bae3e0881b..25fa196e423 100644 --- a/Master/texmf-dist/doc/latex/iexec/iexec.pdf +++ b/Master/texmf-dist/doc/latex/iexec/iexec.pdf 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. |