Home Explore Blog CI



1805cc7c7e95e0dcc93e501ec92211a92fac6ccf8fc9d2fd000000020000642a.png

Extracted Text
~/source/repos/forks/nushell(main) L $ seq 1.0 0.1 2.0 0 1.0000 1 1.1000 2 1.2000 3 1.3000 4 1.4000 5 1.5000 6 1.6000 7 1.7000 8 1.8000 9 1.9000 10 2.0000 ~/source/repos/forks/nushell(main) L $ seq 1 3 0 1 1 2 2 3 ~/source/repos/forks/nushell(main) L $ seq 1 3 -s '|' 1|2|3
Explanation
The image shows a terminal output of the 'seq' command with different arguments. The first command generates a sequence of numbers from 1.0 to 2.0 with an increment of 0.1. The second command generates a sequence of numbers from 1 to 3. The third command generates a sequence of numbers from 1 to 3 separated by '|'.