riju/langs/zsh.yaml

31 lines
346 B
YAML

id: "zsh"
aliases:
- "zshell"
- "zshrc"
name: "Zsh"
monacoLang: shell
install:
apt:
- zsh
- zsh-doc
repl: |
SHELL=/usr/bin/zsh zsh
input: |
expr 123 \* 234
main: ".zshrc"
template: |
echo "Hello, world!"
createEmpty: ""
run: |
SHELL=/usr/bin/zsh zsh
scope:
code: |
x="$(expr 123 \* 234)"
input: |
echo "$x"