mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
14 lines
452 B
Bash
Executable file
14 lines
452 B
Bash
Executable file
in=$1 # Get first's file name
|
|
noext=${in%.*} # Remove extension
|
|
name=${noext##*/} # Remove path
|
|
|
|
make debug
|
|
blspc compile $noext.blsp
|
|
echo -e "------------------------------------------- SOURCE"
|
|
cat $noext.blsp
|
|
echo -e "\n----------------------------------------- COMPILED"
|
|
cat $name.bsm
|
|
echo -e "------------------------------------------- OUTPUT"
|
|
blspc run $name.bsm
|
|
echo -e "--------------------------------------------------"
|