recategorized by
3,374 views

2 Answers

Best answer
3 votes
3 votes

In Linux Seq Command is used to print sequence of numbers.seq command Print numbers from FIRST to LAST, in steps of INCREMENT.

If FIRST or INCREMENT is omitted, it defaults to 1. That is, an omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST. FIRST, INCREMENT, and LAST are interpreted as floating point values. INCREMENT is usually positive if FIRST is smaller than LAST, and INCREMENT is usually negative if FIRST is greater than LAST. When given, the FORMAT argument must contain exactly one of the printf-style, floating point output formats %e, %f, %g

$ seq First  increment  Last

          $\uparrow$         $\uparrow$            $\uparrow$

          1         2           10

Output Sequence Generated by this Command = 1 3 5 7 9

Hence,Option(C)1 3 5 7 9 is the correct choice.

selected by
Answer:

Related questions

0 votes
0 votes
2 answers
1
makhdoom ghaya asked Jul 10, 2016
4,239 views
__________ maintains the list of free disk blocks in the Unix file system.I-nodeBoot blockSuper blockFile allocation table
0 votes
0 votes
1 answer
2
makhdoom ghaya asked Jul 10, 2016
1,561 views
Match the following with reference to Unix shell scripts $:$$\begin{array}{clcl} & \textbf{List – I} & & \textbf{List – II} \\ \text{a.} & \text{\$?} & \text{i.} & ...
0 votes
0 votes
3 answers
4
makhdoom ghaya asked Jul 9, 2016
7,530 views
Consider a program that consists of $8$ pages (from $0$ to $7$) and we have $4$ page frames in the physical memory for the pages. The page reference string is :$1\; 2\; 3...