https://bugs.documentfoundation.org/show_bug.cgi?id=91743

            Bug ID: 91743
           Summary: Consider adding directory indexing/search
           Product: LibreOffice
           Version: unspecified
          Hardware: All
                OS: All
            Status: UNCONFIRMED
          Severity: major
          Priority: medium
         Component: LibreOffice
          Assignee: [email protected]
          Reporter: [email protected]

Recoll finds keywords inside documents as well as file names.

Here's a script that can be use in the same way

#!/bin/bash

shopt -s globstar;  for file in "$2"/**/*.ods ; do if { text=$(unzip -p "$file"
content.xml | xmllint --format - | grep -e "$1"); } 2>/dev/null; then echo
"$file:$text"; fi; done


I evoke it with ./libreoffice-search.sh test /path/


However, neither Recoll nor my script is part of LO. Would it not be able to
search documents with libreoffice from the terminal instead?

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to