source: trunk/src/testing/bin/sage @ 4

Revision 4, 331 bytes checked in by ajaworski, 13 years ago (diff)

Added modified SAGE sources

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3cd $SAGE_DIRECTORY/bin
4
5# Use the 2.4 version of python if running in Rocks environment
6PYTHONEXE=python
7[ -x /opt/rocks/bin/python ] && PYTHONEXE=/opt/rocks/bin/python
8
9# run sageLauncher differently if linux or if macos
10if [ `uname` = "Linux" ]
11then
12    $PYTHONEXE sageLauncher.py
13else
14    pythonw sageLauncher.py
15fi
16
Note: See TracBrowser for help on using the repository browser.