nushell/README.md

307 lines
17 KiB
Markdown
Raw Normal View History

2019-09-02 01:43:30 +00:00
[![Crates.io](https://img.shields.io/crates/v/nu.svg)](https://crates.io/crates/nu)
[![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)
[![Discord](https://img.shields.io/discord/601130461678272522.svg?logo=discord)](https://discord.gg/NtAbbGn)
2019-07-17 20:13:09 +00:00
2019-05-17 16:59:25 +00:00
# Nu Shell
2019-08-30 01:39:20 +00:00
A modern shell for the GitHub era
2019-05-17 16:59:25 +00:00
2019-08-23 05:23:53 +00:00
![Example of nushell](images/nushell-autocomplete4.gif "Example of nushell")
2019-05-17 16:59:25 +00:00
# Status
2019-09-08 17:57:28 +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 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
2019-08-23 21:03:39 +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
2019-09-13 03:04:14 +00:00
# Learning more
There are a few good resources to learn about Nu. First, there is a [book](https://book.nushell.sh) about Nu, currently in progress. The book focuses on using Nu and its core concepts.
2019-09-13 22:58:28 +00:00
If you're a developer who would like to contribute to Nu, we're also working on a [book for developers](https://github.com/nushell/contributor-handbook/tree/master/en) to help 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
We also have an active [discord](https://discord.gg/NtAbbGn) and [twitter](https://twitter.com/nu_shell) if you'd like to come chat with us.
2019-08-18 03:27:03 +00:00
2019-08-23 04:03:07 +00:00
# Installation
## Local
2019-08-23 04:03:07 +00:00
Up-to-date installation instructions can be found in the [installation chapter of the book](https://book.nushell.sh/en/installation).
2019-08-24 16:38:11 +00:00
To build Nu, you will need to use the **nightly** version of the compiler.
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:27:52 +00:00
To install Nu via cargo:
```
cargo +nightly install nu
2019-08-23 15:27:52 +00:00
```
You can also install Nu with all the bells and whistles:
```
2019-08-28 23:32:58 +00:00
cargo +nightly install nu --features raw-key,clipboard
2019-08-23 15:27:52 +00:00
```
The following optional features are currently supported:
2019-08-28 23:32:58 +00:00
* **raw-key** - direct keyboard input, which creates a smoother experience in viewing text and binaries
2019-08-23 15:27:52 +00:00
* **clipboard** - integration with the native clipboard via the `clip` command
## Docker
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 .
```
And then to build the smaller container (using a Multistage build):
```bash
$ docker build -f docker/Dockerfile -t nushell/nu .
```
Either way, you can run either container as follows:
```bash
$ docker run -it nushell/nu-base
$ docker run -it nushell/nu
/> exit
```
The second container is a bit smaller, if size is important to you.
2019-09-06 20:05:35 +00:00
## Packaging status
### Fedora
[COPR repo](https://copr.fedorainfracloud.org/coprs/atim/nushell/): `sudo dnf copr enable atim/nushell -y && sudo dnf install nushell -y`
2019-06-15 02:24:13 +00:00
# Philosophy
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-07-12 17:39:55 +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`)
2019-07-16 19:10:25 +00:00
* Commands that filter a stream (eg, `where type == "Directory"`)
2019-06-15 04:20:58 +00:00
* Commands that consumes the output of the pipeline (eg, `autoview`)
Commands are separated by the pipe symbol (`|`) to denote a pipeline flowing left to right.
2019-06-15 02:24:13 +00:00
```
2019-07-15 20:19:40 +00:00
/home/jonathan/Source/nushell(master)> ls | where type == "Directory" | autoview
━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━
# │ name │ type │ readonly │ size │ accessed │ modified
────┼───────────┼───────────┼──────────┼────────┼──────────────┼────────────────
0 │ .azure │ Directory │ │ 4.1 KB │ 2 months ago │ a day ago
1 │ target │ Directory │ │ 4.1 KB │ 3 days ago │ 3 days ago
2 │ images │ Directory │ │ 4.1 KB │ 2 months ago │ 2 weeks ago
3 │ tests │ Directory │ │ 4.1 KB │ 2 months ago │ 37 minutes ago
4 │ tmp │ Directory │ │ 4.1 KB │ 2 weeks ago │ 2 weeks ago
5 │ src │ Directory │ │ 4.1 KB │ 2 months ago │ 37 minutes ago
6 │ assets │ Directory │ │ 4.1 KB │ a month ago │ a month ago
7 │ docs │ Directory │ │ 4.1 KB │ 2 months ago │ 2 months ago
━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━
2019-06-15 02:24:13 +00:00
```
2019-06-15 04:20:58 +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
```
2019-07-15 20:19:40 +00:00
/home/jonathan/Source/nushell(master)> ls | where type == Directory
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.
```text
/home/jonathan/Source/nushell(master)> ps | where cpu > 0
━━━┯━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━
# │ pid │ name │ status │ cpu
───┼───────┼─────────────────┼──────────┼──────────
0 │ 992 │ chrome │ Sleeping │ 6.988768
1 │ 4240 │ chrome │ Sleeping │ 5.645982
2 │ 13973 │ qemu-system-x86 │ Sleeping │ 4.996551
3 │ 15746 │ nu │ Sleeping │ 84.59905
━━━┷━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━
2019-06-15 02:24:13 +00:00
```
## Opening files
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:
```
/home/jonathan/Source/nushell(master)> open Cargo.toml
━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━
bin │ dependencies │ dev-dependencies
──────────────────┼────────────────┼──────────────────
[table: 12 rows] │ [table: 1 row] │ [table: 1 row]
━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━
2019-06-15 02:24:13 +00:00
```
We can pipeline this into a command that gets the contents of one of the columns:
```
/home/jonathan/Source/nushell(master)> open Cargo.toml | get package
━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━┯━━━━━━┯━━━━━━━━━
authors │ description │ edition │ license │ name │ version
─────────────────┼────────────────────────────┼─────────┼─────────┼──────┼─────────
[table: 3 rows] │ A shell for the GitHub era │ 2018 │ ISC │ nu │ 0.2.0
━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━┷━━━━━━┷━━━━━━━━━
2019-06-15 02:24:13 +00:00
```
Finally, we can use commands outside of Nu once we have the data we want:
```
/home/jonathan/Source/nushell(master)> open Cargo.toml | get package.version | echo $it
2019-08-23 15:34:36 +00:00
0.2.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.
2019-08-07 17:49:11 +00:00
## Shells
2019-08-08 01:50:45 +00:00
By default, Nu will work inside of a single directory and allow you to navigate around your filesystem. Sometimes, you'll want to work in multiple directories at the same time. For this, Nu offers a way of adding additional working directories that you can jump between.
2019-08-07 17:49:11 +00:00
2019-08-08 01:50:45 +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
2019-07-16 19:10:25 +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
2019-07-16 19:10:25 +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
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
## Initial commands
2019-06-02 17:45:57 +00:00
| command | description |
2019-06-15 18:44:21 +00:00
| ------------- | ------------- |
2019-06-15 02:24:13 +00:00
| cd path | Change to a new path |
2019-07-22 02:23:02 +00:00
| cp source path | Copy files |
2019-06-15 02:24:13 +00:00
| ls (path) | View the contents of the current or given path |
| mkdir path | Make directories, creates intermediary directories as required. |
2019-08-14 20:08:10 +00:00
| mv source target | Move files or directories. |
2019-07-26 04:09:19 +00:00
| date (--utc) | Get the current datetime |
2019-06-02 17:45:57 +00:00
| ps | View current processes |
2019-07-28 02:02:42 +00:00
| sys | View information about the current system |
| which filename | Finds a program file. |
2019-09-03 06:04:46 +00:00
| open filename | Load a file into a cell, convert to table if possible (avoid by appending '--raw') |
| fetch url | Fetch contents from a url and retrieve data as a table if possible |
2019-08-31 05:14:04 +00:00
| post url body (--user <user>) (--password <password>) | Post content to a url and retrieve data as a table if possible |
2019-07-17 19:51:18 +00:00
| rm {file or directory} | Remove a file, (for removing directory append '--recursive') |
2019-08-07 17:49:11 +00:00
| exit (--now) | Exit the current shell (or all shells) |
| enter (path) | Create a new shell and begin at this path |
| p | Go to previous shell |
| n | Go to next shell |
| shells | Display the list of current shells |
| help | Display help information about commands |
| version | Display Nu version |
2019-06-02 17:45:57 +00:00
2019-06-15 02:24:13 +00:00
## Filters on tables (structured data)
2019-06-02 17:45:57 +00:00
| command | description |
2019-06-15 18:44:21 +00:00
| ------------- | ------------- |
2019-06-02 18:53:30 +00:00
| pick ...columns | Down-select table to only these columns |
2019-06-02 17:49:08 +00:00
| reject ...columns | Remove the given columns from the table |
2019-08-31 06:12:08 +00:00
| get column-or-column-path | Open column and get data from the corresponding cells |
| sort-by ...columns | Sort by the given columns |
2019-06-02 17:45:57 +00:00
| where condition | Filter table to match the condition |
| inc (column-or-column-path) | Increment a value or version. Optionally use the column of a table |
| add column-or-column-path value | Add a new column to the table |
| embed column | Creates a new table of one column with the given name, and places the current table inside of it |
2019-07-27 16:44:32 +00:00
| sum | Sum a column of values |
| edit column-or-column-path value | Edit an existing column to have a new value |
| reverse | Reverses the table. |
2019-06-02 17:45:57 +00:00
| skip amount | Skip a number of rows |
| skip-while condition | Skips rows while the condition matches. |
2019-06-02 17:45:57 +00:00
| first amount | Show only the first number of rows |
| last amount | Show only the last number of rows |
2019-08-12 05:19:22 +00:00
| nth row-number | Return only the selected row |
| str (column) | Apply string function. Optionally use the column of a table |
| tags | Read the tags (metadata) for values |
2019-06-02 17:45:57 +00:00
| to-json | Convert table into .json text |
| to-toml | Convert table into .toml text |
2019-07-16 19:10:25 +00:00
| to-yaml | Convert table into .yaml text |
| to-bson | Convert table into .bson text |
2019-09-02 05:37:13 +00:00
| to-csv | Convert table into .csv text |
2019-08-31 05:14:04 +00:00
| to-bson | Convert table into .bson binary data |
| to-tsv | Convert table into .tsv text |
| to-sqlite | Convert table to sqlite .db binary data |
2019-06-15 02:24:13 +00:00
## Filters on text (unstructured data)
2019-06-02 17:45:57 +00:00
| command | description |
2019-06-15 18:44:21 +00:00
| ------------- | ------------- |
2019-08-31 05:14:04 +00:00
| from-bson | Parse binary data as .bson and create table |
| from-csv | Parse text as .csv and create table |
2019-06-16 16:05:41 +00:00
| from-ini | Parse text as .ini and create table |
2019-06-02 17:45:57 +00:00
| from-json | Parse text as .json and create table |
2019-08-31 05:14:04 +00:00
| from-sqlite | Parse binary data as sqlite .db and create table |
2019-06-02 17:45:57 +00:00
| from-toml | Parse text as .toml and create table |
| from-tsv | Parse text as .tsv and create table |
2019-06-11 06:36:31 +00:00
| from-xml | Parse text as .xml and create a table |
| from-yaml | Parse text as a .yaml/.yml and create a table |
2019-07-16 19:10:25 +00:00
| lines | Split single string into rows, one per line |
| size | Gather word count statistics on the text |
| split-column sep ...column-names | Split row contents across multiple columns via the separator, optionally give the columns names |
2019-06-02 17:45:57 +00:00
| split-row sep | Split row contents over multiple rows via the separator |
| trim | Trim leading and following whitespace from text data |
2019-06-15 18:44:21 +00:00
| {external-command} $it | Run external command with given arguments, replacing $it with each row text |
2019-05-17 16:59:25 +00:00
2019-06-15 02:24:13 +00:00
## Consuming commands
| command | description |
2019-06-15 18:44:21 +00:00
| ------------- | ------------- |
2019-06-15 02:24:13 +00:00
| autoview | View the contents of the pipeline as a table or list |
2019-07-16 19:10:25 +00:00
| binaryview | Autoview of binary data |
2019-06-15 04:20:58 +00:00
| clip | Copy the contents of the pipeline to the copy/paste buffer |
2019-06-15 02:24:13 +00:00
| save filename | Save the contents of the pipeline to a file |
2019-06-21 04:36:36 +00:00
| table | View the contents of the pipeline as a table |
2019-08-23 15:39:30 +00:00
| textview | Autoview of text data |
2019-06-15 02:24:13 +00:00
| tree | View the contents of the pipeline as a tree |
2019-06-21 04:36:36 +00:00
| vtable | View the contents of the pipeline as a vertical (rotated) table |
2019-05-17 16:59:25 +00:00
2019-06-02 16:49:56 +00:00
# License
The project is made available under the MIT license. See "LICENSE" for more information.