Powerful scripting language & versatile interactive shell add sylixos support.
Go to file
2020-01-17 09:00:23 -05:00
cmd pkg/cli: Teach App to not read more events than needed. 2020-01-01 23:25:31 +00:00
pkg Introduce a new "one" builtin. 2020-01-17 09:00:23 -05:00
tools tools/buildall.sh: Remove comment about requiring Go >= 1.13. 2020-01-14 09:20:23 -05:00
website Introduce a new "one" builtin. 2020-01-17 09:00:23 -05: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 Attempt to fix Travis build matrix. 2020-01-14 09:14:36 -05: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 Upgrade dependencies. 2020-01-14 10:07:21 -05:00
go.sum Upgrade dependencies. 2020-01-14 10:07:21 -05: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: Use -trimpath in the "get" rule now that we require Go >= 1.13. 2020-01-14 09:19:57 -05:00
README.md README: Remove references to developer channels. 2020-01-14 10:12:12 -05: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 from source, you need

  • A supported OS: Linux, {Free,Net,Open}BSD, macOS, or Windows.

    NOTE: Windows support is experimental. Elvish builds on Windows >= 7, but the terminal IO only works correctly on Windows 10.

  • Go >= 1.13.

To build Elvish from source, follow these steps:

# 1. Start from any directory you want to store Elvish's source code
# 2. Clone the Git repository
git clone https://github.com/elves/elvish
# 3. Change into the repository
cd elvish
# 4. Build and install Elvish
make get

This will install Elvish to ~/go/bin.

Alternatively, you can also just use go get to install Elvish:

go get -u github.com/elves/elvish

This will clone the Git repository to ~/go/src/github.com/elves/elvish, updating it if already exists, and install Elvish to ~/go/bin. However, Elvish built this way will lack version information, although it is otherwise fully functional.

Some tips on installation:

  • Remember to add $HOME/go/bin to your PATH so that you can run elvish directly.

  • If you want to install Elvish to a different place, follow these steps to set GOPATH, and Elvish will be installed to $GOPATH/bin instead.

Contributing to Elvish

See CONTRIBUTING.md for more notes for contributors.