File: maxima

package info (click to toggle)
lyx 2.5.0~RC2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 138,212 kB
  • sloc: cpp: 244,227; ansic: 106,398; xml: 72,791; python: 39,384; sh: 7,666; makefile: 6,586; pascal: 2,143; perl: 2,101; objc: 1,084; tcl: 163; sed: 16
file content (13 lines) | stat: -rwxr-xr-x 517 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# at first try the well known location
DIR="/Applications/Maxima.app/Contents/Resources"
test -f "${DIR}"/maxima.sh -a -x "${DIR}"/maxima.sh && exec "${DIR}"/maxima.sh "$@"
# this failed... so try PATH expansion to start the maxima shell wrapper
IFS=":" read -ra DIRLIST <<< "${PATH}"
for DIR in "${DIRLIST[@]}" ; do
	test -f "${DIR}"/maxima.sh -a -x "${DIR}"/maxima.sh && exec "${DIR}"/maxima.sh "$@"
done
# report error and exit with failure status
exec 1>&2
echo Maxima shell wrapper not found.
exit 1