ooopy/OOoPy-1.11/bin/ooo_grep

33 lines
1.3 KiB
Bash
Executable File

#!/bin/sh
# Copyright (C) 2008-10 Dr. Ralf Schlatterbeck Open Source Consulting.
# Reichergasse 131, A-3411 Weidling.
# Web: http://www.runtux.com Email: office@runtux.com
# All rights reserved
# ****************************************************************************
#
# This library is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# ****************************************************************************
# Run all given ooo files through ooo_as_text and grep -l for pattern
if [ $# -lt 2 ] ; then
echo "Usage: $0 <pattern> <ooofile> ..." 2>&1
exit 42
fi
pattern=$1
shift
for k in "$@" ; do
ooo_as_text "$k" | grep -l --label="$k" "$pattern"
done