3 Matching Annotations
  1. Mar 2025
    1. parse it to a table of data.

      A record of data.

    2. 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

    3. 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:\ │ ╰───┴─────╯ ~>