Re: [NTG-context] Output result to specified file path

2021-03-30 Thread Thangalin
>From https://wiki.contextgarden.net/Run_scripts context --jit prd_${PRD} --result=_pdf/$RESULT --mode=$MOD Does this mean the example is incorrect? Or did it once work and the behaviour has since changed? Or is it that relative directories are fine but absolute paths won't work? Let me know

Re: [NTG-context] Output result to specified file path

2021-03-30 Thread Hans Hagen
On 3/30/2021 9:13 AM, Henning Hraban Ramm wrote: Am 30.03.2021 um 07:05 schrieb Thangalin : How do you set the target output path and file name? Consider: context --result=/tmp/subdir/test.pdf $HOME/test.tex Expected: PDF file is created in /tmp/subdir directory. Actual: PDF file is

Re: [NTG-context] Output result to specified file path

2021-03-30 Thread denis.maier
Betreff: [NTG-context] Output result to specified file path How do you set the target output path and file name? Consider: % SOF \starttext Hello \stoptext % EOF Save as $HOME/test.tex and then: mkdir /tmp/subdir context --result=/tmp/subdir/test.pdf $HOME/test.tex Expected: PDF file i

Re: [NTG-context] Output result to specified file path

2021-03-30 Thread Henning Hraban Ramm
> Am 30.03.2021 um 07:05 schrieb Thangalin : > > How do you set the target output path and file name? Consider: > context --result=/tmp/subdir/test.pdf $HOME/test.tex > > Expected: PDF file is created in /tmp/subdir directory. > > Actual: PDF file is created in $HOME directory. That’s known

[NTG-context] Output result to specified file path

2021-03-29 Thread Thangalin
How do you set the target output path and file name? Consider: % SOF \starttext Hello \stoptext % EOF Save as $HOME/test.tex and then: mkdir /tmp/subdir context --result=/tmp/subdir/test.pdf $HOME/test.tex Expected: PDF file is created in /tmp/subdir directory. Actual: PDF file is created