Fix various shenanigans

This commit is contained in:
Radon Rosborough 2021-06-18 08:38:17 +00:00
parent b3386e543b
commit 430550d704
7 changed files with 12 additions and 11 deletions

View File

@ -14,7 +14,7 @@ install:
ln -sT /opt/factor/factor "${pkg}/usr/local/bin/factor-lang" ln -sT /opt/factor/factor "${pkg}/usr/local/bin/factor-lang"
repl: | repl: |
factor-lang HOME="$PWD" factor-lang
input: | input: |
123 234 * 123 234 *
@ -27,7 +27,7 @@ template: |
createEmpty: "" createEmpty: ""
run: | run: |
factor-lang HOME="$PWD" factor-lang
scope: scope:
code: | code: |

View File

@ -34,4 +34,5 @@ run: |
echo 'Reading from stdin, ctrl+D to end input...' >&2 echo 'Reading from stdin, ctrl+D to end input...' >&2
./main ./main
helloInput: | helloInput: |
DELAY: 1
EOF EOF

View File

@ -8,7 +8,7 @@ install:
- genius - genius
repl: | repl: |
genius HOME="$PWD" genius
main: ".geniusinit" main: ".geniusinit"
template: | template: |
@ -16,7 +16,7 @@ template: |
createEmpty: "" createEmpty: ""
run: | run: |
genius HOME="$PWD" genius
scope: scope:
code: | code: |

View File

@ -13,14 +13,14 @@ install:
- r-base - r-base
repl: | repl: |
R HOME="$PWD" R
main: ".Rprofile" main: ".Rprofile"
template: | template: |
print("Hello, world!") print("Hello, world!")
run: | run: |
R --no-save HOME="$PWD" R --no-save
scope: scope:
code: | code: |

View File

@ -31,7 +31,7 @@ install:
ln -s /opt/sagemath/sage "${pkg}/usr/local/bin/" ln -s /opt/sagemath/sage "${pkg}/usr/local/bin/"
repl: | repl: |
sage HOME="$PWD" sage
main: ".sage/init.sage" main: ".sage/init.sage"
template: | template: |
@ -39,7 +39,7 @@ template: |
createEmpty: "" createEmpty: ""
run: | run: |
sage HOME="$PWD" sage
scope: scope:
code: | code: |

View File

@ -10,7 +10,7 @@ install:
- tcl - tcl
repl: | repl: |
tclsh HOME="$PWD" tclsh
input: | input: |
expr 123 * 234 expr 123 * 234

View File

@ -11,7 +11,7 @@ install:
- zsh-doc - zsh-doc
repl: | repl: |
SHELL=/usr/bin/zsh zsh SHELL=/usr/bin/zsh HOME="$PWD" zsh
input: | input: |
expr 123 \* 234 expr 123 \* 234
@ -21,7 +21,7 @@ template: |
createEmpty: "" createEmpty: ""
run: | run: |
SHELL=/usr/bin/zsh zsh SHELL=/usr/bin/zsh HOME="$PWD" zsh
scope: scope:
code: | code: |