Results 1 to 2 of 2
Greetings!
I'm asking here because OpenOffice forums and groups are totally clueless! I'm using Linux Mint 13 with OOo 3.5 and I've been seeking high and low for an app ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-20-2012 #1Just Joined!
- Join Date
- Apr 2012
- Posts
- 45
Text-Searching Thru Multiple OpenOffice Writer Docs in Linux
Greetings!
I'm asking here because OpenOffice forums and groups are totally clueless! I'm using Linux Mint 13 with OOo 3.5 and I've been seeking high and low for an app that will text search thru OOo docs as I can on Macs via plug-ins. Linux User recommended "apps" as Loook.py and Docco don't function.
Any help would be appreciated!
Jim in NYC
- 09-20-2012 #2Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,680
I think OO files are compressed XML files, aren't they? So you could try something like this:
Code:#!/bin/bash for file in *.odt; do unzip -ca "$file"|grep -q "search_string" && echo $file done


Reply With Quote
