Skip to content

Instantly share code, notes, and snippets.

@dirksan28
Last active October 3, 2022 18:28
Show Gist options
  • Save dirksan28/2cf6ca0cc34aef080365b8edce6e6527 to your computer and use it in GitHub Desktop.
Save dirksan28/2cf6ca0cc34aef080365b8edce6e6527 to your computer and use it in GitHub Desktop.
Random linux related stuff which makes life easier

Collection of code-snippets...

mainly linux related ;-)

Recursive fulltext search in a tree of jar-files

FTsearchInJars Search for the word gif and print the number of occurrences within the jars.

f () 
{ 
    find . -name '*.jar' -exec bash -c "echo -n '{} ' ; unzip -p {} | strings | grep -ci '$1' " \; | sort -n -k 2
}

for more background about bash-functions see general HowTo and usage/OS integration

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment