Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 3.98 KB

quick_tour.md

File metadata and controls

53 lines (27 loc) · 3.98 KB

Quick Tour

The easiest way to see what Nu can do is to start with some examples, so let's dive in.

The first thing you'll notice when you run a command like ls is that instead of a block of text coming back, you get a structured table.

@code

The table does more than show the directory in a different way. Just like tables in a spreadsheet, this table allows us to work with the data more interactively.

The first thing we'll do is to sort our table by size. To do this, we'll take the output from ls and feed it into a command that can sort tables based on the contents of a column.

@code

You can see that to make this work we didn't pass commandline arguments to ls. Instead, we used the sort-by command that Nu provides to do the sorting of the output of the ls command. To see the biggest files on top, we also used reverse.

Nu provides many commands that can work on tables. For example, we could use where to filter the contents of the ls table so that it only shows files over 1 kilobyte:

@code

Just as in the Unix philosophy, being able to have commands talk to each other gives us ways to mix-and-match in many different combinations. Let's look at a different command:

@code

You may be familiar with the ps command if you've used Linux. With it, we can get a list of all the current processes that the system is running, what their status is, and what their name is. We can also see the CPU load for the processes.

What if we wanted to show the processes that were actively using the CPU? Just like we did with the ls command earlier, we can also work with the table that the ps command gives back to us:

@code

So far, we've been using ls and ps to list files and processes in the form of a simple table. But data in Nu is structured and can be arbitrarily nested. As an example, let's now explore the help commands command.

Running help commands gives us information for all Nushell commands as a table. However, the output will be quite large, so let's get the row for the each command only.

@code

This is a bit different than the tables we saw before. Retrieving a single row from a table gives us a record, which is set of key-value pairs. Note that the "params" and "input_output" columns happen to contain tables instead of a simple values. To view only one of those columns, we can use the get command to retrieve it:

@code

The get command lets us jump into the contents of structured data (a table, record, or list). We can even pass it nested columns to access data at any depth.

@code

These nested columns are called cell paths. Nu will take the cell path and go to the corresponding bit of data in a table, record, or list. Cell paths also support row numbers, so we could have rewritten the above pipeline as:

@code

Getting Help

You can see the help text for any of Nu's built-in commands by using the help command or by passing the --help flag to a command. You can also search for a topic by doing help -f <topic>.

@code