parse it to a table of data.
A record of data.
parse it to a table of data.
A record of data.
In other words, the string "Hello, World" and the output value from echo "Hello, World" are equivalent
echo is basically identity function.
~> (echo 3)
3
~> (echo 3) | describe
int
Multi-dot shortcuts are available to both internal Nushell filesystem commands as well as to external commands. For example, running ^stat .... on a Linux/Unix system will show that the path is expanded to ../../../..
In other word, the ...
is also a glob.
~> let glob = ("..." | glob $in)
~> $glob
╭───┬─────╮
│ 0 │ C:\ │
╰───┴─────╯
~>