Ubuntuで最初にテキストに変換せずにgrepを使用してPDFファイルを検索する方法はありますか?
承認された回答:
パッケージpdfgrep
をインストールします 、次にコマンドを使用します:
find /path -iname '*.pdf' -exec pdfgrep pattern {} +
——————
それを行う最も簡単な方法:
pdfgrep 'pattern' *.pdf
pdfgrep 'pattern' file.pdf
Ubuntuで最初にテキストに変換せずにgrepを使用してPDFファイルを検索する方法はありますか?
パッケージpdfgrep
をインストールします 、次にコマンドを使用します:
find /path -iname '*.pdf' -exec pdfgrep pattern {} +
——————
それを行う最も簡単な方法:
pdfgrep 'pattern' *.pdf
pdfgrep 'pattern' file.pdf