Skip to content

Instantly share code, notes, and snippets.

@ivv-private
Created October 29, 2012 10:35
Show Gist options
  • Save ivv-private/3972879 to your computer and use it in GitHub Desktop.
Save ivv-private/3972879 to your computer and use it in GitHub Desktop.
blog-emacs-java-m2jdee
find ~/projects/ \( -name pom.xml -print \) | \
sed 's/pom.xml//' | sort | \
awk 'BEGIN {P="doh"} {if (index($0, P)==0){P=$0; print P "pom.xml"}}' | \
xargs -P1 -n1 \
$M2_HOME/bin/mvn install jdee:jdee -DskipTests=true -q -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment