Home Explore Blog CI



ba325e8d202e78437771dbce99fc9d41114c15b05b55d3c60000000200000da9.png

Extracted Text
~/source/repos/forks/nushell(main) L $ echo [1 2 3] | wrap count | insert mul { |row| ($row.count * 2)}
Explanation
The image shows a terminal window with a nushell prompt. The command `echo [1 2 3] | wrap count | insert mul { |row| ($row.count * 2)}` is being executed. This command creates a list [1 2 3], wraps it in a table with a 'count' column, and inserts a new column named 'mul' where each value is the corresponding 'count' value multiplied by 2.