
seq
List of commands for seq:
-
seq:tldr:bc8f9 seq: Every 3rd number from 5 to 20.$ seq 5 3 20try on your machineexplain this command
-
seq:tldr:be82c seq: Separate the output with a space instead of a newline.$ seq -s " " 5 3 20try on your machineexplain this command
-
seq:tldr:bea94 seq: Format output width to a minimum of 4 digits padding with zeros as necessary.$ seq -f "%04g" 5 3 20try on your machineexplain this command