nushell/README.md

319 lines
16 KiB
Markdown
Raw Normal View History

# README
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/nushell/nushell)
2019-09-02 01:43:30 +00:00
[![Crates.io](https://img.shields.io/crates/v/nu.svg)](https://crates.io/crates/nu)
2019-09-28 01:46:57 +00:00
[![Build Status](https://dev.azure.com/nushell/nushell/_apis/build/status/nushell.nushell?branchName=master)](https://dev.azure.com/nushell/nushell/_build/latest?definitionId=2&branchName=master)
2019-09-02 01:43:30 +00:00
[![Discord](https://img.shields.io/discord/601130461678272522.svg?logo=discord)](https://discord.gg/NtAbbGn)
2019-10-02 14:34:08 +00:00
[![The Changelog #363](https://img.shields.io/badge/The%20Changelog-%23363-61c192.svg)](https://changelog.com/podcast/363)
2020-07-01 21:00:44 +00:00
[![@nu_shell](https://img.shields.io/badge/twitter-@nu_shell-1DA1F3?style=flat-square)](https://twitter.com/nu_shell)
2019-09-02 01:43:30 +00:00
## Nushell
2019-05-17 16:59:25 +00:00
2020-01-27 03:32:02 +00:00
A new type of shell.
2019-05-17 16:59:25 +00:00
2019-09-23 07:59:05 +00:00
![Example of nushell](images/nushell-autocomplete.gif "Example of nushell")
2019-08-23 05:23:53 +00:00
## Status
2019-05-17 16:59:25 +00:00
This project has reached a minimum-viable product level of quality.
While contributors dogfood it as their daily driver, it may be unstable for some commands.
Future releases will work to fill out missing features and improve stability.
Its design is also subject to change as it matures.
2019-05-17 16:59:25 +00:00
Nu comes with a set of built-in commands (listed below).
If a command is unknown, the command will shell-out and execute it (using cmd on Windows or bash on Linux and macOS), correctly passing through stdin, stdout, and stderr, so things like your daily git workflows and even `vim` will work just fine.
2019-05-17 16:59:25 +00:00
## Learning more
2019-09-13 03:04:14 +00:00
There are a few good resources to learn about Nu.
There is a [book](https://www.nushell.sh/book/) about Nu that is currently in progress.
The book focuses on using Nu and its core concepts.
2019-09-13 03:04:14 +00:00
If you're a developer who would like to contribute to Nu, we're also working on a [book for developers](https://www.nushell.sh/contributor-book/) to help you get started.
There are also [good first issues](https://github.com/nushell/nushell/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) to help you dive in.
2019-09-13 03:04:14 +00:00
2019-10-01 10:54:59 +00:00
We also have an active [Discord](https://discord.gg/NtAbbGn) and [Twitter](https://twitter.com/nu_shell) if you'd like to come and chat with us.
2019-09-29 22:29:59 +00:00
2020-01-24 17:51:24 +00:00
You can also find more learning resources in our [documentation](https://www.nushell.sh/documentation.html) site.
2019-10-01 11:39:18 +00:00
Try it in Gitpod.
2019-09-29 22:29:59 +00:00
2019-09-28 01:46:57 +00:00
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/nushell/nushell)
2019-08-18 03:27:03 +00:00
## Installation
2019-08-23 04:03:07 +00:00
### Local
2019-12-15 12:56:26 +00:00
Up-to-date installation instructions can be found in the [installation chapter of the book](https://www.nushell.sh/book/en/installation.html). **Windows users**: please note that Nu works on Windows 10 and does not currently have Windows 7/8.1 support.
2019-08-23 04:03:07 +00:00
To build Nu, you will need to use the **latest stable (1.47 or later)** version of the compiler.
2019-08-24 16:38:11 +00:00
2019-08-23 15:32:28 +00:00
Required dependencies:
* pkg-config and libssl (only needed on Linux)
* On Debian/Ubuntu: `apt install pkg-config libssl-dev`
2019-08-23 15:32:28 +00:00
2019-08-23 15:39:50 +00:00
Optional dependencies:
2019-08-23 15:32:28 +00:00
* To use Nu with all possible optional features enabled, you'll also need the following:
* On Linux (on Debian/Ubuntu): `apt install libxcb-composite0-dev libx11-dev`
2019-08-23 15:32:28 +00:00
2019-11-07 19:19:41 +00:00
To install Nu via cargo (make sure you have installed [rustup](https://rustup.rs/) and the latest stable compiler via `rustup install stable`):
2019-08-23 15:27:52 +00:00
```bash
2019-11-07 18:17:12 +00:00
cargo install nu
2019-08-23 15:27:52 +00:00
```
2019-12-28 02:27:51 +00:00
You can also build Nu yourself with all the bells and whistles (be sure to have installed the [dependencies](https://www.nushell.sh/book/en/installation.html#dependencies) for your platform), once you have checked out this repo with git:
2019-08-23 15:27:52 +00:00
```bash
2020-08-14 04:46:25 +00:00
cargo build --workspace --features=extra
2019-08-23 15:27:52 +00:00
```
### Docker
#### Quickstart
Want to try Nu right away? Execute the following to get started.
```bash
docker run -it quay.io/nushell/nu:latest
```
#### Guide
If you want to pull a pre-built container, you can browse tags for the [nushell organization](https://quay.io/organization/nushell)
on Quay.io. Pulling a container would come down to:
```bash
docker pull quay.io/nushell/nu
docker pull quay.io/nushell/nu-base
```
Both "nu-base" and "nu" provide the nu binary, however nu-base also includes the source code at `/code`
in the container and all dependencies.
Optionally, you can also build the containers locally using the [dockerfiles provided](docker):
To build the base image:
```bash
docker build -f docker/Dockerfile.nu-base -t nushell/nu-base .
2019-09-28 01:46:57 +00:00
```
And then to build the smaller container (using a Multistage build):
```bash
docker build -f docker/Dockerfile -t nushell/nu .
2019-09-28 01:46:57 +00:00
```
Either way, you can run either container as follows:
```bash
docker run -it nushell/nu-base
docker run -it nushell/nu
/> exit
```
2019-10-01 10:58:56 +00:00
The second container is a bit smaller if the size is important to you.
### Packaging status
2019-09-06 20:05:35 +00:00
[![Packaging status](https://repology.org/badge/vertical-allrepos/nushell.svg)](https://repology.org/project/nushell/versions)
#### Fedora
2019-09-06 20:05:35 +00:00
[COPR repo](https://copr.fedorainfracloud.org/coprs/atim/nushell/): `sudo dnf copr enable atim/nushell -y && sudo dnf install nushell -y`
## Philosophy
2019-06-15 02:24:13 +00:00
Nu draws inspiration from projects like PowerShell, functional programming languages, and modern CLI tools.
Rather than thinking of files and services as raw streams of text, Nu looks at each input as something with structure.
For example, when you list the contents of a directory, what you get back is a table of rows, where each row represents an item in that directory.
These values can be piped through a series of steps, in a series of commands called a 'pipeline'.
2019-06-15 02:24:13 +00:00
### Pipelines
2019-06-15 02:24:13 +00:00
In Unix, it's common to pipe between commands to split up a sophisticated command over multiple steps.
Nu takes this a step further and builds heavily on the idea of _pipelines_.
Just as the Unix philosophy, Nu allows commands to output from stdout and read from stdin.
Additionally, commands can output structured data (you can think of this as a third kind of stream).
Commands that work in the pipeline fit into one of three categories:
2019-06-15 02:24:13 +00:00
2019-06-15 04:20:58 +00:00
* Commands that produce a stream (eg, `ls`)
* Commands that filter a stream (eg, `where type == "Dir"`)
2019-10-01 11:46:04 +00:00
* Commands that consume the output of the pipeline (eg, `autoview`)
2019-06-15 04:20:58 +00:00
Commands are separated by the pipe symbol (`|`) to denote a pipeline flowing left to right.
2019-06-15 02:24:13 +00:00
```shell
> ls | where type == "Dir" | autoview
───┬────────┬──────┬───────┬──────────────
# │ name │ type │ size │ modified
───┼────────┼──────┼───────┼──────────────
0 │ assets │ Dir │ 128 B │ 5 months ago
1 │ crates │ Dir │ 704 B │ 50 mins ago
2 │ debian │ Dir │ 352 B │ 5 months ago
3 │ docker │ Dir │ 288 B │ 3 months ago
4 │ docs │ Dir │ 192 B │ 50 mins ago
5 │ images │ Dir │ 160 B │ 5 months ago
6 │ src │ Dir │ 128 B │ 1 day ago
7 │ target │ Dir │ 160 B │ 5 days ago
8 │ tests │ Dir │ 192 B │ 3 months ago
───┴────────┴──────┴───────┴──────────────
2019-06-15 02:24:13 +00:00
```
Because most of the time you'll want to see the output of a pipeline, `autoview` is assumed.
We could have also written the above:
2019-06-15 02:24:13 +00:00
```shell
> ls | where type == Dir
2019-06-15 02:24:13 +00:00
```
Being able to use the same commands and compose them differently is an important philosophy in Nu.
For example, we could use the built-in `ps` command as well to get a list of the running processes, using the same `where` as above.
2019-06-15 02:24:13 +00:00
```shell
> ps | where cpu > 0
2020-05-13 17:36:24 +00:00
───┬────────┬───────────────────┬──────────┬─────────┬──────────┬──────────
# │ pid │ name │ status │ cpu │ mem │ virtual
───┼────────┼───────────────────┼──────────┼─────────┼──────────┼──────────
0 │ 435 │ irq/142-SYNA327 │ Sleeping │ 7.5699 │ 0 B │ 0 B
1 │ 1609 │ pulseaudio │ Sleeping │ 6.5605 │ 10.6 MB │ 2.3 GB
2 │ 1625 │ gnome-shell │ Sleeping │ 6.5684 │ 639.6 MB │ 7.3 GB
3 │ 2202 │ Web Content │ Sleeping │ 6.8157 │ 320.8 MB │ 3.0 GB
4 │ 328788 │ nu_plugin_core_ps │ Sleeping │ 92.5750 │ 5.9 MB │ 633.2 MB
───┴────────┴───────────────────┴──────────┴─────────┴──────────┴──────────
2019-06-15 02:24:13 +00:00
```
### Opening files
2019-06-15 02:24:13 +00:00
Nu can load file and URL contents as raw text or as structured data (if it recognizes the format).
For example, you can load a .toml file as structured data and explore it:
2019-06-15 02:24:13 +00:00
```shell
> open Cargo.toml
2020-05-13 17:36:24 +00:00
────────────────────┬───────────────────────────
bin │ [table 18 rows]
2020-07-31 21:21:10 +00:00
build-dependencies │ [row serde toml]
2020-05-13 17:36:24 +00:00
dependencies │ [row 29 columns]
dev-dependencies │ [row nu-test-support]
features │ [row 19 columns]
package │ [row 12 columns]
workspace │ [row members]
────────────────────┴───────────────────────────
2019-06-15 02:24:13 +00:00
```
We can pipeline this into a command that gets the contents of one of the columns:
```shell
> open Cargo.toml | get package
2020-05-13 17:36:24 +00:00
───────────────┬────────────────────────────────────
authors │ [table 1 rows]
default-run │ nu
description │ A new type of shell
documentation │ https://www.nushell.sh/book/
edition │ 2018
exclude │ [table 1 rows]
homepage │ https://www.nushell.sh
license │ MIT
name │ nu
readme │ README.md
repository │ https://github.com/nushell/nushell
version │ 0.21.0
2020-05-13 17:36:24 +00:00
───────────────┴────────────────────────────────────
2019-06-15 02:24:13 +00:00
```
Finally, we can use commands outside of Nu once we have the data we want:
```shell
> open Cargo.toml | get package.version
0.21.0
2019-06-15 02:24:13 +00:00
```
Here we use the variable `$it` to refer to the value being piped to the external command.
### Configuration
2019-11-18 14:41:16 +00:00
2020-05-13 17:36:24 +00:00
Nu has early support for configuring the shell. You can refer to the book for a list of [all supported variables](https://www.nushell.sh/book/en/configuration.html).
2019-11-18 14:41:16 +00:00
To set one of these variables, you can use `config set`. For example:
2019-11-18 14:41:16 +00:00
```shell
> config set edit_mode "vi"
> config set path $nu.path
2019-11-18 14:41:16 +00:00
```
### Shells
2019-08-07 17:49:11 +00:00
Nu will work inside of a single directory and allow you to navigate around your filesystem by default.
Nu also offers a way of adding additional working directories that you can jump between, allowing you to work in multiple directories at the same time.
2019-08-07 17:49:11 +00:00
To do so, use the `enter` command, which will allow you create a new "shell" and enter it at the specified path.
You can toggle between this new shell and the original shell with the `p` (for previous) and `n` (for next), allowing you to navigate around a ring buffer of shells.
Once you're done with a shell, you can `exit` it and remove it from the ring buffer.
2019-08-07 17:49:11 +00:00
Finally, to get a list of all the current shells, you can use the `shells` command.
2019-06-15 02:24:13 +00:00
### Plugins
2019-06-15 02:24:13 +00:00
Nu supports plugins that offer additional functionality to the shell and follow the same structured data model that built-in commands use.
This allows you to extend nu for your needs.
2019-06-15 02:24:13 +00:00
2019-07-16 19:10:25 +00:00
There are a few examples in the `plugins` directory.
2019-06-15 02:24:13 +00:00
Plugins are binaries that are available in your path and follow a `nu_plugin_*` naming convention.
These binaries interact with nu via a simple JSON-RPC protocol where the command identifies itself and passes along its configuration, which then makes it available for use.
If the plugin is a filter, data streams to it one element at a time, and it can stream data back in return via stdin/stdout.
If the plugin is a sink, it is given the full vector of final data and is given free reign over stdin/stdout to use as it pleases.
2019-06-15 02:24:13 +00:00
## Goals
2019-06-15 02:24:13 +00:00
Nu adheres closely to a set of goals that make up its design philosophy. As features are added, they are checked against these goals.
* First and foremost, Nu is cross-platform. Commands and techniques should carry between platforms and offer first-class consistent support for Windows, macOS, and Linux.
* Nu ensures direct compatibility with existing platform-specific executables that make up people's workflows.
* Nu's workflow and tools should have the usability in day-to-day experience of using a shell in 2019 (and beyond).
* Nu views data as both structured and unstructured. It is a structured shell like PowerShell.
2019-06-15 02:24:13 +00:00
2019-08-24 21:48:02 +00:00
* Finally, Nu views data functionally. Rather than using mutation, pipelines act as a means to load, change, and save data without mutable state.
2019-06-15 02:24:13 +00:00
## Commands
2020-01-24 17:51:24 +00:00
You can find a list of Nu commands, complete with documentation, in [quick command references](https://www.nushell.sh/documentation.html#quick-command-references).
2019-09-23 03:55:52 +00:00
## Progress
Nu is in heavy development, and will naturally change as it matures and people use it. The chart below isn't meant to be exhaustive, but rather helps give an idea for some of the areas of development and their relative completion:
| Features | Not started | Prototype | MVP | Preview | Mature | Notes
| -------- |:-----------:|:---------:|:---:|:-------:|:------:| -----
| Aliases | | X | | | | Initial implementation but lacks necessary features
| Notebook | | X | | | | Initial jupyter support, but it loses state and lacks features
| File ops | | | X | | | cp, mv, rm, mkdir have some support, but lacking others
| Environment | | X | | | | Temporary environment, but no session-wide env variables
| Shells | | X | | | | Basic value and file shells, but no opt-in/opt-out for commands
| Protocol | | | X | | | Streaming protocol is serviceable
| Plugins | | X | | | | Plugins work on one row at a time, lack batching and expression eval
| Errors | | | X | | | Error reporting works, but could use usability polish
| Documentation | | X | | | | Book and related are barebones and lack task-based lessons
| Paging | | X | | | | Textview has paging, but we'd like paging for tables
| Functions| X | | | | | No functions, yet, only aliases
| Variables| X | | | | | Nu doesn't yet support variables
| Completions | | X | | | | Completions are currently barebones, at best
| Type-checking | | X | | | | Commands check basic types, but input/output isn't checked
## Current Roadmap
We've added a `Roadmap Board` to help collaboratively capture the direction we're going for the current release as well as capture some important issues we'd like to see in Nushell. You can find the Roadmap [here](https://github.com/nushell/nushell/projects/2).
## Contributing
See [Contributing](CONTRIBUTING.md) for details.
## License
2019-06-02 16:49:56 +00:00
The project is made available under the MIT license. See the `LICENSE` file for more information.