Powerful scripting language & versatile interactive shell add sylixos support.
Go to file
Qi Xiao 6e75f3468c Move API of pkg/store into pkg/storedefs.
This makes the nodaemon entrypoint not depend on boltdb at all, reducing its
size by 100KB (on darwin-arm64).
2021-06-19 01:54:00 +01:00
.github/workflows Bump the version of prettier to 2.3.1. 2021-06-15 17:41:29 +01:00
cmd Remove direct dependency of pkg/shell on the daemon implementation. 2021-06-19 01:43:30 +01:00
pkg Move API of pkg/store into pkg/storedefs. 2021-06-19 01:54:00 +01:00
tools Make gofmt -s part of checkstyle-go.sh and the style target in Makefile. 2021-06-09 01:06:00 +01:00
website website/ref: Update docset URL and add link to subscribe to feed. 2021-06-15 16:19:31 +01:00
.cirrus.yml Remove step to deploy to bintray in Cirrus CI config. 2021-05-06 11:32:24 +01:00
.codecov.yml Remove pkg/eval/vals/testutils.go from codecov coverage. 2021-06-15 17:58:14 +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 Handle AltGr key combinations on Windows 2021-06-13 16:38:49 +01:00
.gitlab-ci.yml Test and build in parallel. 2021-05-10 01:02:58 +01:00
0.16.0-release-notes.md Fixup for #1308. 2021-06-10 09:14:15 +01:00
CONTRIBUTING.md Bump the version of prettier to 2.3.1. 2021-06-15 17:41:29 +01:00
Dockerfile Lock image versions in Dockerfile 2021-03-19 23:14:10 +00:00
go.mod Use the integrated persistent package. 2021-05-03 22:17:46 +01:00
go.sum Use the integrated persistent package. 2021-05-03 22:17:46 +01:00
LICENSE Project rename: das -> elvish 2014-01-29 18:44:07 +08:00
Makefile Update some comments in Makefile. 2021-06-09 01:11:09 +01:00
PACKAGING.md PACKAGING.md: The guide applies to releases from 0.16.0, not 0.15.0 2021-01-31 02:32:04 +00:00
README.md Update README 2021-06-10 07:59:53 +01:00

Elvish: Expressive Programming Language + Versatile Interactive Shell

CI status FreeBSD test status gccgo test status Test Coverage Go Report Card Twitter

Elvish is an expressive programming language and a versatile interactive shell, combined into one seamless package. It runs on Linux, BSDs, macOS and Windows.

Despite its pre-1.0 status, it is already suitable for most daily interactive use.

Visit the official website https://elv.sh for prebuilt binaries, blog posts, documentation and other resources.

User groups (all connected thanks to Matrix): Gitter Telegram Group #elvish on libera.chat #users:elves.sh

Building Elvish

Most users do not need to build Elvish from source. Prebuilt binaries for the latest commit are provided for Linux amd64, macOS amd64, Windows amd64 and many other platforms.

To build Elvish from source, you need

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

    NOTE: Windows 10 support is experimental.

  • Go >= 1.15.

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 (or $GOPATH/bin if you have set $GOPATH). You might want to add the directory to your PATH.

To install it elsewhere, override ELVISH_MAKE_BIN in the make command:

make get ELVISH_MAKE_BIN=./elvish # Install to the repo root
make get ELVISH_MAKE_BIN=/usr/local/bin/elvish # Install to /usr/local/bin

Packaging Elvish

See PACKAGING.md for notes for packagers.

Contributing to Elvish

See CONTRIBUTING.md for notes for contributors.