Powerful scripting language & versatile interactive shell add sylixos support.
Go to file
2018-11-17 18:17:31 +01:00
_tools Add _tools/elvdoc for extracting Elvish API docs. 2018-10-09 23:29:36 +08:00
_website _website: Add ttyshots to fundamentals. 2018-11-17 17:17:09 +01:00
buildinfo golint fixes. 2018-10-13 17:52:54 +01:00
daemon daemon: Unexport Service. 2018-10-13 18:51:47 +01:00
diag diag: Fix a godoc. 2018-10-13 16:56:56 +01:00
edit edit: Convert tabs into four spaces in nav mode preview. 2018-11-17 18:17:31 +01:00
eval eval: Make putSelfInFg a nop if stdin is not a TTY. 2018-11-17 17:53:42 +01:00
getopt Cosmetics. 2018-01-01 15:12:34 +00:00
glob util: Change the API of WithTempDir and InTempDir. 2018-10-13 14:04:13 +01:00
newedit newedit/utils -> newedit/editutil. 2018-10-13 18:38:14 +01:00
parse golint fixes. 2018-10-13 17:52:54 +01:00
program parse: Cleanups. 2018-10-13 17:27:39 +01:00
runtime runtime: Kill outdated daemon with SIGINT, not SIGKILL. 2018-03-24 15:44:23 +00:00
store Support deleting command history with store:del-cmd. 2018-05-14 23:26:36 +01:00
styled golint fixes. 2018-10-13 17:52:54 +01:00
sys sys: Use x/sys/* packages instead of syscall. 2018-03-01 13:56:13 -05:00
tt tt: Support custom return value matching. 2018-01-31 08:35:35 -08:00
util golint fixes. 2018-10-13 17:52:54 +01:00
vendor Update dependency. 2018-03-01 18:23:32 -05:00
.appveyor.yml Disable coverage upload on AppVeyor. 2018-09-21 00:41:53 +01: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 .gitignore: Add /_bin/. 2018-09-24 22:20:50 +01:00
.travis.yml Bump Go versions and use '.x' to always get latest patch versions (#771) 2018-10-28 13:25:45 +00:00
.vsts.sh Attempt #4 to fix .vsts.sh. 2018-06-07 00:33:21 +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
Gopkg.lock Update dependency. 2018-03-01 18:23:32 -05:00
Gopkg.toml Update dep constraints. 2018-01-05 03:52:21 +00:00
LICENSE Project rename: das -> elvish 2014-01-29 18:44:07 +08:00
logo.svg _website: Inline CSS and JS. 2018-11-06 22:52:04 +00:00
main.go New title and description. 2017-12-31 21:25:20 +00:00
Makefile Simplify coverage deployment scripts for Travis. 2018-09-14 13:48:34 +01:00
README.md Update README.md 2018-11-05 00:46:23 +00:00

Elvish: Friendly Interactive Shell and Expressive Programming Language

Build Status on Travis Build status on AppVeyor 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.10.

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