Computer scienceSystem administration and DevOpsCommand lineBash syntax

Loops and sequences

Seq command

Report a typo

Run the seq command with the first argument ($1) as the start of a range and a second argument ($2) as its end.

Sample Input 1:

1 5

Sample Output 1:

1
2
3
4
5
Write a program in Shell
#!/usr/bin/env bash
function solve() {
# put your code here
}
___

Create a free account to access the full topic