Jot is a free Linux tool used to print out increasing, decreasing, sequential date or random, redundant data usually one per line. You can also create a list of numbers based on the values.
How to install jot on Ubuntu
Open the terminal application (ctrl+alt+t) and run below jot install command. It will install the latest version of jot on your Linux system.
sudo apt install athena-jot
Jot Command Examples:
1. Print x number of values after and from the number y.
jot x y
jot 10 1
2. prints 21 evenly spaced numbers increasing from -1 to 1.
jot 21 -1 1.00
3. Print the strings xaa through xaz with
jot -w xa%c 26 a
For more details run below commands.
man jot