Home Explore Blog CI



nushell

2nd chunk of `blog/2020-03-31-nushell_0_12_0.md`
c8f0bd762c436404c0e9b19ccef9d89c2e3d5280976169dd0000000100000be4


Nu's core design goal is that it should be easier to work with your system and your data. In this release, we take a step beyond being just a shell with [Jupyter notebook support](https://github.com/nushell/nu_jupyter).

## `ls --all` (quebin31)

```
❯ ls
────┬─────────────────────────────────────────────────────┬──────┬──────────┬──────────────
 #  │                        name                         │ type │   size   │   modified
────┼─────────────────────────────────────────────────────┼──────┼──────────┼──────────────
  0 │ CODE_OF_CONDUCT.md                                  │ File │   3.4 KB │ 5 months ago
  1 │ Cargo.lock                                          │ File │ 104.5 KB │ 23 mins ago
  2 │ Cargo.toml                                          │ File │   5.5 KB │ 23 mins ago
...

❯ ls --all
────┬─────────────────────────────────────────────────────┬──────┬──────────┬──────────────
 #  │                        name                         │ type │   size   │   modified
────┼─────────────────────────────────────────────────────┼──────┼──────────┼──────────────
  0 │ .azure                                              │ Dir  │          │ 2 weeks ago
  1 │ .cargo                                              │ Dir  │          │ 2 weeks ago
  2 │ .circleci                                           │ Dir  │          │ 2 weeks ago
...
```

With 0.12.0, you can now show hidden files when listing directory contents with `ls`.

## `from-ics` and `from-vcf` (pulpdrew)

The file support continues to improve, as we add support for vCard and iCal file formats.

## `to-md` and `to-html` (sophiajt)

```
❯ ls | to-md
|name|type|size|modified|
|-|-|-|-|
|CODE_OF_CONDUCT.md|File|3.4 KB|5 months ago|
|Cargo.lock|File|104.5 KB|21 mins ago|
```

You can now output to markdown and html using the new converters.

## `headers` (samhedin)

```
❯ open tests/fixtures/formats/sample_data.ods | get SalesOrders
────┬────────────┬─────────┬──────────┬─────────┬─────────┬───────────┬───────────

Title: Nushell 0.12.0: Jupyter Notebook Support, ls --all, and New Converters
Summary
Nushell 0.12.0 expands its capabilities, now supporting Jupyter notebooks for easier interaction. It also introduces 'ls --all' to display hidden files, and new converters 'to-md' and 'to-html' for outputting data in markdown and HTML formats. Additionally, support for vCard and iCal file formats has been added.