Executing GUI .sh file with Osx

119 Views Asked by At

I'm a very beginner in this kind of stuff so I suppose the solution for this problem may not be so difficult. I'm trying to open the GUI file of MEKA (an extension to weka) and it's manual tells me to execute a file called: run.sh. I go to the console and type 'my file's location'/run.sh and what happens is I get the message: "The main class could not be located and loaded", or something like that.

This is the content of the run.shfile:

#!/bin/bash

MEMORY=512m
MAIN=meka.gui.explorer.Explorer

java -Xmx$MEMORY -cp "./lib/*" $MAIN $1

So any tips?

Thank you.

1

There are 1 best solutions below

0
On

The script depends on it being run from the folder it resides in. Try:

cd fileLocation
./run.sh