This is gap.sh in view mode; [Download] [Up]
#!/bin/sh ############################################################################# ## ## gap.sh GAP Martin Schoenert ## ## This is a shell script for the UNIX operating system that starts GAP. ## This is the place where you make all the necessary customizations. ## Then copy this file to a directory in your search path, e.g., '~/bin'. ## If you later move GAP to another location you must only change this file. ## ############################################################################# ## ## GAP_DIR . . . . . . . . . . . . . . . . . . . . directory where GAP lives ## ## Set 'GAP_DIR' to the name of the directory where you have installed GAP, ## i.e., the directory with the subdirectories 'lib', 'grp', 'doc', etc. ## The default is '/usr/local/lib/gap3r4p2', which is a standard location. ## You have to change this unless you have installed GAP in this location. ## GAP_DIR=/usr/share/lib/gap-3r4p2 ############################################################################# ## ## GAP_MEM . . . . . . . . . . . . . . . . . . . amount of initial workspace ## ## Set 'GAP_MEM' to the amount of memory GAP shall use as initial workspace. ## The default is 4 MByte, which is the minimal reasonable amount of memory. ## You have to change it if you want GAP to use a larger initial workspace. ## If you are not going to run GAP in parallel with other programs you may ## want to set this value close to the amount of memory your computer has. ## GAP_MEM=4m ############################################################################# ## ## GAP_PRG . . . . . . . . . . . . . . . . . name of the executable program ## ## Set 'GAP_PRG' to the name of the executable program of the GAP kernel. ## The default is 'gap', which is what you get when you 'make' the kernel. ## You may want to change it if you keep different kernels in one location. ## GAP_PRG=gap ############################################################################# ## ## GAP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . run GAP ## ## You probably should not change this line, which finally starts GAP. ## exec $GAP_DIR/bin/$GAP_PRG -m $GAP_MEM -l $GAP_DIR/lib/ -h $GAP_DIR/doc/ $*
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.