diff options
author | Karl Berry <karl@freefriends.org> | 2021-05-13 21:29:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-05-13 21:29:26 +0000 |
commit | d709a52d36c0cd28bbe9e0805da7786c840b324a (patch) | |
tree | a5636ebc32e97b7e20ea81a7d9d399d3c471b4c5 /Master | |
parent | 6420859adf6ed13d62704d9f5f3076cce03bdcdf (diff) |
etex-answer-y
git-svn-id: svn://tug.org/texlive/trunk@59187 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/etex-answer-y | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/etex-answer-y b/Master/tlpkg/bin/etex-answer-y new file mode 100755 index 00000000000..291977fe15d --- /dev/null +++ b/Master/tlpkg/bin/etex-answer-y @@ -0,0 +1,14 @@ +#!/bin/sh +# $Id$ +# Public domain. Originally written by Karl Berry, 20201. +# lua-ul and other packages do not set \askforoverwritefalse. +# and docstrip spuriously asks about overwriting when a file to be +# generated exists anywhere in the tree, not just when something will +# actually be overwritten. So answer y. +# https://github.com/latex3/latex2e/issues/558 +# +# An alternative would be to create a temporary docstrip.cfg file +# setting \askforoverwritefalse. Perhaps interaction is required in +# other cases also, though. + +yes y | head -128 | etex --8bit "$@" |