Skip to content

Instantly share code, notes, and snippets.

Created December 31, 2016 17:14
Show Gist options
  • Save anonymous/0f2e42e40d7cbedde30c94f8e36f65f2 to your computer and use it in GitHub Desktop.
Save anonymous/0f2e42e40d7cbedde30c94f8e36f65f2 to your computer and use it in GitHub Desktop.
#!/bin/bash
find ~/.ivy2/cache -iregex '.*/docs/.*\.jar' | while read line; do
echo "Extracting $line"
filename=${line##*/}
dirname=${filename%.*}
mkdir -p $dirname
cd $dirname
jar xf $line
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment