30 lines
332 B
YAML
30 lines
332 B
YAML
id: "zsh"
|
|
aliases:
|
|
- "zshell"
|
|
- "zshrc"
|
|
name: "Zsh"
|
|
monacoLang: shell
|
|
|
|
install:
|
|
apt:
|
|
- zsh
|
|
|
|
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"
|