12 lines
157 B
Bash
Executable File
12 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#clear LD_LIBRARY_PATH
|
|
export LD_LIBRARY_PATH=
|
|
|
|
#get path to openEMS
|
|
openEMS_PATH=`dirname $0`
|
|
|
|
#execute openEMS
|
|
exec $openEMS_PATH/openEMS $@
|
|
|