Skip to content

Instantly share code, notes, and snippets.

View andrefabbro's full-sized avatar
🏠
Working from home

André Fabbro andrefabbro

🏠
Working from home
View GitHub Profile
@tmoreira2020
tmoreira2020 / findClass.sh
Created April 17, 2011 15:06
Search for a class into a subdirectory tree and its jars/zips files.
#!/bin/bash
archives= find . -name '*.jar'
echo $archives
for i in `find . -name '*.jar'`; do
echo $i
jar tf $i | grep --color=always ${1}
#jar tf $i
echo
done