Skip to content

Instantly share code, notes, and snippets.

@ibrahima
Created July 22, 2011 05:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ibrahima/1098960 to your computer and use it in GitHub Desktop.
Save ibrahima/1098960 to your computer and use it in GitHub Desktop.
Bash script to generate eclipse projects for all ROS projects in the current directory
#!/usr/bin/env bash
echo "Generating eclipse projects for all ROS projects in this directory"
for MKFILE in `find $PWD -name Makefile`; do
DIR=`dirname $MKFILE`
echo $DIR
cd $DIR
make eclipse-project
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment