Ben McCann

Co-founder of Zenos.
Investor at C3 Ventures.
Google and CMU alum.

Ben McCann on LinkedIn Ben McCann on AngelList Ben McCann on Twitter

April 2009

Maven on Eclipse Tutorial

04/12/2009

Install Java and Maven First off, make sure you have a Java JDK installed and that your JAVA_HOME environment variable points to it. You can check by typing “echo %JAVA_HOME%” in Windows or “echo $JAVA_HOME” in Linux. You’ll next want to download and install Maven by following the directions on their website.  Once Maven is Read More

How to use the Linux find command

04/01/2009

I always have trouble remembering how to use the find command in Linux, so here are a few examples. Finding all hidden files: find . -regex ‘.*/\..*’ Deleting all Java files: rm -rf `find . -name *.java` Deleting all directories named .svn: rm -rf `find . -type d -name .svn` Recursively set permissions for a Read More