Giter Club home page Giter Club logo

rgpipe's Introduction

rgpipe is a single bash/sh script and an alias to use with ripgrep to search through a myriad of file types that are otherwise not grep friendy. rgpipe because the idea is similar to lesspipe.
Use it with ripgrep's -pre command which allows ripgrep to selectively process files before searching

I wrote up an extended gist about how to use it here

That gist is only useful because of the kind note by BurntSushi in this hacker news comment explaining how rg --pre-glob works.

This helps grep through:

  • New MS Office files (docx,pptx,xlsx, variants thereof)
    • Uses unzip and sed
  • Old MS Office files (doc,ppt,xls,variants thereof) & new excel binary format
    • Uses strings
  • LibreOffice files (ods,odt,odp)
    • Uses unzip and sed
  • PDF
    • Uses pdftottext from poppler
  • Web/structured formats (html, xhtml ...)
    • Uses w3m lynx and friends also works. Not 100% neccesary.
  • Web formats disguised as books (chm, epub)
    • unzip and w3m for epub
    • 7zip and w3m for chm

Specifically

Ubuntu wants: sudo apt install poppler-utils p7zip w3m unzip

termux wants: pkg install poppler p7zip w3m

Usage notes

Vanilla ripgrep usage

Assuming rgpipe is in path, use /path/to/rgpipe if it's not

rg --pre rgpipe YourSearchTermHere

Better ripgrep usage

Above uses rgpipe even when it's not needed, which is slow, ripgrep can selectively use it with --pre-glob

rg --pre-glob '*.{xlsx,pptx,docx,pdf}' --pre rgpipe YourSearchTermHere

A more thorough pre glob:

rg --pre-glob '*.{pdf,xl[tas][bxm],xl[wsrta],do[ct],do[ct][xm],p[po]t[xm],p[op]t,html,htm,xhtm,xhtml,epub,chm,od[stp]}' --pre rgpipe YourSearchTermHere

An alias because that is alot of typing

alias rgg="rg -i -z --max-columns-preview --max-columns 500 --hidden --no-ignore --pre-glob \
'*.{pdf,xl[tas][bxm],xl[wsrta],do[ct],do[ct][xm],p[po]t[xm],p[op]t,html,htm,xhtm,xhtml,epub,chm,od[stp]}' --pre rgpipe"

Poors mans's full text search

Step 1: use rgpipe to make text sidecar files

findrgpipetype() {
	 find `pwd` -type f -iname "*.$1" -exec sh -c 'for f; do rgpipe "$f" > "${f%.*}.txt"; done' _ {} +
}

Step 2: Use ripgrep to search those files

rg YourSearchTermHere

Super useful

1 - this hacker news comment

2 - The pre processing script that is the template into which I added some more file types

3 - midnight commander has great scripts on this subject

4 - lesspipe of course

5 - rga is a rust based tool doing a similair thing

rgpipe's People

Contributors

colonelbuendia avatar jeremykennedy avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.