[Command example] seq 10 Output a number from 1 to 10 seq -w Fill the beginning with 0 to align the number of digits seq 5 10 Output by specifying the start number and end number seq 1 2 10 Output while increasing the number from 1 to 10 by 2. seq -s x 10 Put a break in the number
Recommended Posts