Powerful scripting language & versatile interactive shell add sylixos support.
Go to file
Qi Xiao cc924d20b6 Update Dockerfile.
Removed gotty and added git.
2018-10-22 23:51:09 +01:00
_tools Add _tools/elvdoc for extracting Elvish API docs. 2018-10-09 23:29:36 +08:00
_website Update README.md 2018-10-22 11:48:52 +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: Hide contrl characters for not break preview (#767) 2018-10-16 10:22:19 +01:00
eval eval/vals: 0:0 and n:n are now valid string indicies. 2018-10-14 10:59:43 +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 Use "binaries" for the job of building binaries on Travis. 2018-09-14 13:37:29 +01: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
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 Move building instructions back into README.md. 2018-10-21 20:49:28 +01:00

Elvish: Friendly and Expressive Shell

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

Elvish is a friendly and expressive shell for Linux, BSDs, macOS and Windows. Despite being pre-1.0 software, it is already suitable for most daily interactive use.

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

To meet fellow elves, you can join any of these channels (all connected thanks to matterbridge):

Gitter Telegram Group #elvish on freenode

Regardless of whether you consider yourself a master Elf, feel free to contribute! CONTRIBUTING.md has some notes for contributors. You can also join any of these channels to meet fellow developers:

Gitter for Developers Telegram Group for Developers #elvish-dev 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.