File: auto

package info (click to toggle)
auto-07p 0.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,160 kB
  • ctags: 6,620
  • sloc: fortran: 22,644; f90: 19,340; python: 19,045; ansic: 11,116; sh: 1,079; makefile: 614; perl: 339
file content (12 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh
if [ -z "$AUTO_DIR" ]; then
    AUTO_DIR=/usr/lib/auto-07p
    export AUTO_DIR
fi

if test "`uname`" = "Darwin"; then
  if which pythonw > /dev/null; then
    exec pythonw $AUTO_DIR/python/interactiveBindings.py ${1+"$@"};
  fi
fi
exec $AUTO_DIR/python/interactiveBindings.py ${1+"$@"};