Files
pshell-apps/correlation/bin/correlation_editor
2025-08-15 17:01:15 +02:00

32 lines
420 B
Bash
Executable File

#!/bin/bash
MY_PATH=$(dirname "$0")
export PKG=${MY_PATH}/..
#Check if running as e-account
for i in "$@"
do
case $i in
-pkg=*)
export PKG="${i#*=}"
;;
*) # unknown option
;;
esac
done
/opt/gfa/pshell/pshell \
-version=default \
-z \
-py3 \
-nbcf=true \
-laf=dark \
-pini=true \
-plgp=${PKG}/plugins \
-scpt=${PKG}/script \
-devp=${PKG}/devices \
$@