Get version of LibreCalc that created a file

Is there a way to determine the version of LibreCalc that created a spreadsheet, preferably by the command line?

Hello,

check file meta.xml in .ods zip file (extract the .ods using any zip program), There is a tag:
<meta:generator>LibreOffice/6.3.4.2.....</meta:generator>

On my Linux this command line works for me:
unzip -p MyCalcTestFile.ods meta.xml | xmlstarlet fo | awk '/<meta:generator>/'

Hope that helps.

If the answer helped you to solve your problem, please click the check mark (:heavy_check_mark:) next to the answer.

Perfect - thanks!