Fix various shenanigans
This commit is contained in:
parent
b3386e543b
commit
430550d704
|
@ -14,7 +14,7 @@ install:
|
|||
ln -sT /opt/factor/factor "${pkg}/usr/local/bin/factor-lang"
|
||||
|
||||
repl: |
|
||||
factor-lang
|
||||
HOME="$PWD" factor-lang
|
||||
input: |
|
||||
123 234 *
|
||||
|
||||
|
@ -27,7 +27,7 @@ template: |
|
|||
createEmpty: ""
|
||||
|
||||
run: |
|
||||
factor-lang
|
||||
HOME="$PWD" factor-lang
|
||||
|
||||
scope:
|
||||
code: |
|
||||
|
|
|
@ -34,4 +34,5 @@ run: |
|
|||
echo 'Reading from stdin, ctrl+D to end input...' >&2
|
||||
./main
|
||||
helloInput: |
|
||||
DELAY: 1
|
||||
EOF
|
||||
|
|
|
@ -8,7 +8,7 @@ install:
|
|||
- genius
|
||||
|
||||
repl: |
|
||||
genius
|
||||
HOME="$PWD" genius
|
||||
|
||||
main: ".geniusinit"
|
||||
template: |
|
||||
|
@ -16,7 +16,7 @@ template: |
|
|||
createEmpty: ""
|
||||
|
||||
run: |
|
||||
genius
|
||||
HOME="$PWD" genius
|
||||
|
||||
scope:
|
||||
code: |
|
||||
|
|
|
@ -13,14 +13,14 @@ install:
|
|||
- r-base
|
||||
|
||||
repl: |
|
||||
R
|
||||
HOME="$PWD" R
|
||||
|
||||
main: ".Rprofile"
|
||||
template: |
|
||||
print("Hello, world!")
|
||||
|
||||
run: |
|
||||
R --no-save
|
||||
HOME="$PWD" R --no-save
|
||||
|
||||
scope:
|
||||
code: |
|
||||
|
|
|
@ -31,7 +31,7 @@ install:
|
|||
ln -s /opt/sagemath/sage "${pkg}/usr/local/bin/"
|
||||
|
||||
repl: |
|
||||
sage
|
||||
HOME="$PWD" sage
|
||||
|
||||
main: ".sage/init.sage"
|
||||
template: |
|
||||
|
@ -39,7 +39,7 @@ template: |
|
|||
createEmpty: ""
|
||||
|
||||
run: |
|
||||
sage
|
||||
HOME="$PWD" sage
|
||||
|
||||
scope:
|
||||
code: |
|
||||
|
|
|
@ -10,7 +10,7 @@ install:
|
|||
- tcl
|
||||
|
||||
repl: |
|
||||
tclsh
|
||||
HOME="$PWD" tclsh
|
||||
input: |
|
||||
expr 123 * 234
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ install:
|
|||
- zsh-doc
|
||||
|
||||
repl: |
|
||||
SHELL=/usr/bin/zsh zsh
|
||||
SHELL=/usr/bin/zsh HOME="$PWD" zsh
|
||||
input: |
|
||||
expr 123 \* 234
|
||||
|
||||
|
@ -21,7 +21,7 @@ template: |
|
|||
createEmpty: ""
|
||||
|
||||
run: |
|
||||
SHELL=/usr/bin/zsh zsh
|
||||
SHELL=/usr/bin/zsh HOME="$PWD" zsh
|
||||
|
||||
scope:
|
||||
code: |
|
||||
|
|
Loading…
Reference in New Issue