Запуск программ
Command = "$ " { unicode_linechar | "%{" Expression "}" | "${" identifier "}" }run str {
$ dir
str name = $ echo "John Smith"
return $ echo My name is %{name}
}Переменные окружения
EnvVariable = "$" identifierrun str {
$MYVAR = `Go path: ${GOPATH}` + $GOROOT
return $ echo ${MYVAR}
}Last updated
Was this helpful?