On Thu, Mar 9, 2023 at 10:42 PM Charles Curley
<charlescur...@charlescurley.com> wrote:
>
> On Fri, 10 Mar 2023 08:50:08 +0800
> Corey Hickman <cor...@free.fr> wrote:
>
> > If I want to convert some excel files to PDF, what's the suggested
> > way? I know I can program with java to implement that, but if there
> > are existing command-line solutions I would like to try them.
> [...]
>
> Given the nature of this list, I conjecture you want a solution that
> works on Linux.
>
> I would use LibreOffice to export to PDF. I believe one can script the
> process.

++

I use the following for ODT files:

    odt_files=(...)
    for odt_file in "${odt_files[@]}"
    do
        echo "Processing ${odt_file}"
        lowriter --convert-to pdf "${odt_file}"
    done

Jeff

Reply via email to