diff --git a/README.md b/README.md
index c74c790a8ec060c209ff2a8bbe58f270eccb0e2e..1c5a8b91af41395baac780f477c0a01224248feb 100644
--- a/README.md
+++ b/README.md
@@ -89,8 +89,7 @@ This will run the 11Li(d,3He)10He->8He+n+n simulation and produce a root file lo
 
 You can now try to analyse this simulated tree using the associated NPAnalysis project:
 ````
-$ npa
-$ cd Example1/
+$ npp Example1
 $ cmake ./
 $ make -jn
 $ npanalysis -R RunToTreat.txt -O Example1
diff --git a/nptool.sh b/nptool.sh
index aa206f93b618dcca7bdf11f2c80659e32cf5fc86..7e10b53b9a1fd4fa897cba4972311528ed5914f9 100644
--- a/nptool.sh
+++ b/nptool.sh
@@ -35,7 +35,12 @@ export npa_not_supported='npa is now longer supported, use npp instead'
 alias npa='echo $npa_not_supported'
 
 function npp {
-  cd $NPTOOL/Projects/$1
+  if [[ $1 == *"Example"* ]]
+  then
+    cd $NPTOOL/Examples/$1 
+  else
+    cd $NPTOOL/Projects/$1
+  fi
 }