Home Explore Blog CI



nushell

1st chunk of `blog/2021-09-14-nushell_0_37.md`
93c8885acc53b8201e2b564f4f4412b1579b515707352cac000000010000081b
---
title: Nushell 0.37
author: The Nu Authors
author_site: https://twitter.com/nu_shell
author_image: https://www.nushell.sh/blog/images/nu_logo.png
excerpt: Today, we're releasing 0.37 of Nu. This release adds a new find function, improvements to the current engine, and updates on the upcoming engine.
---

# Nushell 0.37

Nushell, or Nu for short, is a new shell that takes a modern, structured approach to your commandline. It works seamlessly with the data from your filesystem, operating system, and a growing number of file formats to make it easy to build powerful commandline pipelines.

Today, we're releasing 0.37 of Nu. This release adds a new `find` function, improvements to the current engine, and updates on the upcoming engine.

<!-- more -->

# Where to get it

Nu 0.37 is available as [pre-built binaries](https://github.com/nushell/nushell/releases/tag/0.37.0) or from [crates.io](https://crates.io/crates/nu). If you have Rust installed you can install it using `cargo install nu`.

If you want all the goodies, you can install `cargo install nu --features=extra`.

As part of this release, we also publish a set of plugins you can install and use with Nu. To install, use `cargo install nu_plugin_<plugin name>`.

# What's New

## `find`ing data in tables



In 0.37, you now have access to a new `find` command, which can help you quickly look for data across all columns in a table.

You can still reach your system's `find` command using `^` by typing `^find`.

## Additional improvements

- fdncred added more [support for ansi art](https://github.com/nushell/nushell/pull/3973), and [more chars](https://github.com/nushell/nushell/pull/3975)
- aminya removed shelling out in [some cases where it's not needed](https://github.com/nushell/nushell/pull/3974)
- sophiajt made [sys/ps/fetch/post core commands](https://github.com/nushell/nushell/pull/3983), moving them from plugins to internal commands. This allows for future capability to have nushell download its own extensions.

Title: Nushell 0.37: New `find` Command and Improvements
Summary
Nushell 0.37 introduces a new `find` command for searching data across all columns in a table. It also includes improvements to ANSI art support, removal of unnecessary shelling out, and the transition of sys/ps/fetch/post commands from plugins to internal commands.