Skip to content

Instantly share code, notes, and snippets.

@jarekdziedzic
Created June 8, 2015 09:59
Show Gist options
  • Save jarekdziedzic/9388f936ff339825540b to your computer and use it in GitHub Desktop.
Save jarekdziedzic/9388f936ff339825540b to your computer and use it in GitHub Desktop.
Netbeans haxxx
#Generate part of configuration.xml in netbeans project that defines include paths.
echo -e "<ccTool>\n\t<incDir>\n"; for i in `find . -name include | cut -c 3- - `; do echo -e "\t\t<pElem>$i</pElem>";done; echo -e "\t</incDir>\n</ccTool>\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment