Home > Pentaho > Pentaho Linux .sh files

Pentaho Linux .sh files

Small little tip:

The pentaho build process doesn’t currently manage the permissions on .sh files properly.  When you download the daily builds or other demo installations you may get some errors (bash command not founds, etc).  You need to change to executable all .sh files in the installation.  Use the following command in the “pentaho-demo” directory.

for x in `find . -name ‘*.sh’`; do chmod +x $x; done

Hope you find this helpful!

Categories: Pentaho
  1. August 23, 2006 at 4:13 am | #1

    For Kettle you can also use the following command if you don’t like to do the chmod thingy…

    sh -C spoon.sh

  2. August 23, 2006 at 7:15 am | #2

    Oh, and I always use this version if i want to go to all subdirectories to change or delete something:

    find . -name “*.sh” -exec chmod +x {} \;

  1. No trackbacks yet.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>