- In order to make the import as easy as possible only copy the .cs files to the new Project directory. This can be achieved by: cd [beagle-directory] tar -cvzf beagle-cs.tgz `find -name *.cs` cp beagle-cs.tgz ~/Projects/beagle cd ~/Projects/beagle tar -xvzf beagle-cs.tgz ... i don't know how to do this directly without tar. But it worked fine for me this way.
this should work cp ` find [beagle-directory] -name "*.cs" ` ~/Projects/beagle/ Enrico M.