Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shreeshga/2223505 to your computer and use it in GitHub Desktop.
Save shreeshga/2223505 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