Nushell cheat sheet
Data types
> "12" | into int
converts string to integer
> date now | date to-timezone "Europe/London"
converts present date to provided time zone
> {'name': 'nu', 'stars': 5, 'language': 'Python'} | upsert language 'Rust'
updates a record's language and if none is specified inserts provided value
> [one two three] | to yaml
converts list of strings to yaml
> [[framework, language]; [Django, Python] [Lavarel, PHP]]
prints the table
> [{name: 'Robert' age: 34 position: 'Designer'}
{name: 'Margaret' age: 30 position: 'Software Developer'}
{name: 'Natalie' age: 50 position: 'Accountant'}
] | select name position
selects two columns from the table and prints their values
Strings
> let name = "Alice"
> $"greetings, ($name)!"
prints
greetings, Alice!
> let string_list = "one,two,three" | split row ","
$string_list
โญโโโโฌโโโโโโโโฎ
โ 0 โ one โ
โ 1 โ two โ
โ 2 โ three โ
โฐโโโโดโโโโโโโโฏ
splits the string with specified delimiter and saves the list to
string_list
variable
"Hello, world!" | str contains "o, w"
checks if a string contains a substring and returns
boolean
let str_list = [zero one two]
$str_list | str join ','
joins the list of strings using provided delimiter
> 'Hello World!' | str substring 4..8
created a slice from a given string with start (4) and end (8) indices
> 'Nushell 0.80' | parse '{shell} {version}'
โญโโโโฌโโโโโโโโโโฌโโโโโโโโโโฎ
โ # โ shell โ version โ
โโโโโผโโโโโโโโโโผโโโโโโโโโโค
โ 0 โ Nushell โ 0.80 โ
โฐโโโโดโโโโโโโโโโดโโโโโโโโโโฏ
parses the string to columns
> "acronym,long\nAPL,A Programming Language" | from csv
parses comma separated values (csv)
> $'(ansi purple_bold)This text is a bold purple!(ansi reset)'
ansi command colors the text (alsways end with
ansi reset
to reset color to default)
Lists
> [foo bar baz] | insert 1 'beeze'
โญโโโโฌโโโโโโโโฎ
โ 0 โ foo โ
โ 1 โ beeze โ
โ 2 โ bar โ
โ 3 โ baz โ
โฐโโโโดโโโโโโโโฏ
inserts
beeze
value at st index in the list
> [1, 2, 3, 4] | update 1 10
updates 2nd value to 10
> let numbers = [1, 2, 3, 4, 5]
> $numbers | prepend 0
adds value at the beginning of the list
> let numbers = [1, 2, 3, 4, 5]
> $numbers | append 6
adds value at the end of the list
> let flowers = [cammomile marigold rose forget-me-not]
> let flowers = ($flowers | first 2)
> $flowers
creates slice of first two values from
flowers
list
> let planets = [Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune]
> $planets | each { |it| $"($it) is a planet of solar system" }
iterates over a list;
it
is current list value
> $planets | enumerate | each { |it| $"($it.index + 1) - ($it.item)" }
iterates over a list and provides index and value in
it
> let scores = [3 8 4]
> $"total = ($scores | reduce { |it, acc| $acc + $it })"
reduces the list to a single value,
reduce
gives access to accumulator that is applied to each element in the list
> $"total = ($scores | reduce --fold 1 { |it, acc| $acc * $it })"
initial value for accumulator value can be set with
--fold
> let planets = [Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune]
> $planets.2
> Earth
gives access to the 3rd item in the list
> let planets = [Mercury Venus Earth Mars Jupiter Saturn Uranus Neptune]
> $planets | any {|it| $it | str starts-with "E" }
> true
checks if any string in the list starts with
E
> let cond = {|x| $x < 0 }; [-1 -2 9 1] | take while $cond
โญโโโโฌโโโโโฎ
โ 0 โ -1 โ
โ 1 โ -2 โ
โฐโโโโดโโโโโฏ
creates slice of items that satisfy provided condition
Tables
> ls | sort-by size
sorting table by size of files
> ls | sort-by size | first 5
sorting table by size of files and show first 5 entries
> let $a = [[first_column second_column third_column]; [foo bar snooze]]
> let $b = [[first_column second_column third_column]; [hex seeze feeze]]
> $a | append $b
โญโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโฎ
โ # โ first_column โ second_column โ third_column โ
โโโโโผโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโค
โ 0 โ foo โ bar โ snooze โ
โ 1 โ hex โ seeze โ feeze โ
โฐโโโโดโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโฏ
concatenate two tables with same columns
> let teams_scores = [[team score plays]; ['Boston Celtics' 311 3] ['Golden State Warriors', 245 2]]
> $teams_scores | drop column
โญโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโฎ
โ # โ team โ score โ
โโโโโผโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโค
โ 0 โ Boston Celtics โ 311 โ
โ 1 โ Golden State Warriors โ 245 โ
โฐโโโโดโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโฏ
remove the last column of a table
Files & Filesystem
> start file.txt
opens a text file with the default text editor
> 'lorem ipsum ' | save file.txt
saves a string to text file
> 'dolor sit amet' | save --append file.txt
appends a string to the end of file.txt
> { a: 1, b: 2 } | save file.json
saves a record to file.json
> glob **/*.{rs,toml} --depth 2
searches for
.rs
and.toml
files recursively up to 2 folders deep
> watch . --glob=**/*.rs {|| cargo test }
runs cargo test whenever a Rust file changes
Custom Commands
def greet [name: string] {
$"hello ($nameยญ)"
}
custom command with parameter type set to string
def greet [name = "nushell"] {
$"hello ($nameยญ)"
}
custom command with default parameter set to nushell
def greet [
name: string
--age: int
] {
[$name $age]
}
> greet world --age 10
passing named parameter by defining flag for custom commands
def greet [
name: string
--age (-a): int
--twice
] {
if $twice {
[$name $age $name $age]
} else {
[$name $age]
}
}
> greet -a 10 --twice hello
using flag as a switch with a shorthand flag (-a) for the age
def greet [...name: string] {
print "ยญhello all:"
for $n in $name {
print $n
}
}
> greet earth mars jupiter venus
custom command which takes any number of positional arguments using rest params
Variables & Subexpressions
> let val = 42
> print $val
42
an immutable variable cannot change its value after declaration
> let val = 42
> do { let val = 101; $val }
101
> $val
42
shadowing variable (declaring variable with the same name in a different scope)
> mut val = 42
> $val += 27
> $val
69
declaring a mutable variable with mut key word
> mut x = 0
> [1 2 3] | each { $x += 1 }
closures and nested defs cannot capture mutable variables from their enviroยญnment. This expression results in error.
> const plugin = 'path/ยญto/ยญplugin'
> register $plugin
a constant variable is immutable value which is fully evaluated at parse-time
> let files = (ls)
> $files.naยญme?.0?
using question mark operator to return null instead of error if provided path is incorrect
> let big_files = (ls | where size > 10kb)
> $big_files
using subexpยญression by wrapping the expression with parentยญheses ()
Modules
> module greetings {
export def hello [name: string] {
$"hello ($nameยญ)!"
}
export def hi [where: string] {
$"hi ($where)!ยญ"
}
}
> use greetings hello
> hello "ยญworยญld"
using inline module
# greetiยญngs.nu
export-env {
$env.MยญYNAME = "ยญArthur, King of the Britonยญs"
}
export def hello [] {
$"hello ($env.MยญYNยญAMEยญ)"
}
> use greetiยญngs.nu
> $env.MยญYNAME
Arthur, King of the Britons
> greetings hello
hello Arthur, King of the Britons!
importing module from file and using its enviroยญnment in current scope
# greetiยญngs.nu
export def hello [name: string] {
$"hello ($nameยญ)!"
}
export def hi [where: string] {
$"hi ($where)!ยญ"
}
export def main [] {
"ยญgreยญetings and salutations!"
}
> use greetiยญngs.nu
> greetings
greetings and salutaยญtions!
> greetings hello world
hello world!
using main command in module