~/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.