debug asfshell plugin
diff --git a/pelicanconf.py b/pelicanconf.py
index ce64b68..a877ef3 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -151,8 +151,7 @@
 
 # COnfigure the shell commands for the asfshell plugin to run during initialization
 ASF_SHELL = [
-    'echo $PWD',
-    'find . -name "*.ezmd"'
+    '/bin/bash shell.sh'
 ]
 
 # Sitemap Generator
diff --git a/shell.sh b/shell.sh
new file mode 100755
index 0000000..c8d26a4
--- /dev/null
+++ b/shell.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+echo $PWD
+
+echo 'EZMD'
+find . -name "*.ezmd"
+echo 'MD'
+find . -name "*.md"