shell-script-pt
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: convertendo arquivos pdf em arquivos textos


From: dgotek
Subject: Re: convertendo arquivos pdf em arquivos textos
Date: Thu, 26 Jul 2007 17:05:18 -0000
User-agent: eGroups-EW/0.82

eu montei esse script e funcionou certinho na busca de palavras, 
agora eu preciso incrementar, fazer que transforme o arquivo pdf em 
formato .doc ou .txt, localize as palavras e deixe as palavras 
localizadas selecionadas, e armazene em outra arquivo.


#!/bin/bash
#script que localiza as palavras

E_BADARGS=65
E_NOFILE=66

if [ $# -ne 2 ]
then
  echo "Usage: `basename $0` search_string filename"
  exit $E_BADARGS
fi

if [ ! -f "$2" ]
then
  echo "File \"$2\" does not exist."
  exit $E_NOFILE
fi  


IFS=$'\012'       
for word in $( strings "$2" | grep "$1" )

do
  echo $word
done



exit 0

>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]