9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
code_file=`pwd`/"$1"
|
||
|
shift
|
||
|
|
||
|
cd $SMALLTALK_PATH
|
||
|
$SMALLTALK_PATH/gst "$code_file" "$@"
|
||
|
|