Powerful scripting language & versatile interactive shell add sylixos support.
Go to file
2020-01-12 00:42:18 +00:00
cmd pkg/cli: Teach App to not read more events than needed. 2020-01-01 23:25:31 +00:00
pkg pkg/eval: Check FD when using it as redir source. 2020-01-12 00:42:18 +00:00
tools Fix path of the buildinfo package in build commands. 2019-12-29 23:03:19 +00:00
vendor Updating dependencies (#817) 2019-04-17 23:14:32 +02:00
website ref/language: Document that omitted value in map pairs is equivalent to $true. 2020-01-02 20:46:53 +00:00
.appveyor.yml .appveyor.yml: Raise UI timeout to 10 seconds. 2019-11-25 23:36:22 +00:00
.dockerignore Update .dockerignore. 2018-10-16 10:19:20 +01:00
.gitattributes Use .gitattributes to filter go sources through goimports 2014-02-10 12:41:16 +08:00
.gitignore Makefile: _cover/ -> cover/. 2019-12-23 20:01:55 +00:00
.travis.yml .travis.yml: Fix spelling of "stage". 2019-11-07 17:47:19 +01:00
CONTRIBUTING.md Move building instructions back into README.md. 2018-10-21 20:49:28 +01:00
Dockerfile Update Dockerfile. 2018-10-22 23:51:09 +01:00
go.mod Supported Go versions: -1.11, +1.13 2019-10-21 11:09:22 +01:00
go.sum Updating dependencies (#817) 2019-04-17 23:14:32 +02:00
LICENSE Project rename: das -> elvish 2014-01-29 18:44:07 +08:00
main.go pkg/program: Improve tests. 2020-01-09 00:34:55 +00:00
Makefile Makefile: Stick to tabs. 2020-01-02 22:11:15 +00:00
README.md README.md: Remove VSTS badge. 2019-12-26 15:48:58 +00:00

Elvish: Friendly Interactive Shell and Expressive Programming Language

Build Status on Travis Build status on AppVeyor Code Coverage on codecov.io Code Coverage on coveralls.io Go Report Card GoDoc License Twitter

Elvish is a friendly interactive shell and an expressive programming language. It runs on Linux, BSDs, macOS and Windows. Despite its pre-1.0 status, it is already suitable for most daily interactive use.

Most of the resources for Elvish can be found on the official website.

User groups (all connected thanks to matterbridge): Gitter Telegram Group #elvish on freenode

Building Elvish

To build Elvish, you need

  • Linux, {Free,Net,Open}BSD, macOS, or Windows (Windows support is experimental).

  • Go >= 1.12.

If you have not done so, first set up your environment by following How To Write Go Code.

There are two ways to build Elvish. You can build it directly with go get:

go get github.com/elves/elvish

However, binaries built in this way lacks some build-time information; for instance, elvish -version will show unknown. To add such information, use make:

cd `go env GOPATH`/src/github.com/elves/elvish
make get

In either cases, the binary is placed in $GOPATH/bin. Consider adding it to your $PATH if you want to run the Elvish binary you just built by just typing elvish.

See CONTRIBUTING.md for more notes for contributors. You can also join one of the developer groups (also connected together by matterbridge): Gitter for Developers Telegram Group for Developers #elvish-dev on freenode