Skip to content

Instantly share code, notes, and snippets.

@abajwa-hw
Created April 20, 2016 22:26
Show Gist options
  • Save abajwa-hw/534cbef4d71f2d9747276b058402f1a1 to your computer and use it in GitHub Desktop.
Save abajwa-hw/534cbef4d71f2d9747276b058402f1a1 to your computer and use it in GitHub Desktop.
Find jar
#find jar containing class org.apache.hive.jdbc.HiveStatement
find / -iname '*.jar' | xargs -i bash -c "jar -tvf {} | tr / . | grep org.apache.hive.jdbc.HiveStatement && echo {}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment