Q37
The field separator in cut command is specified with
A.
-d option
B.
-a option
AnswerC.
-r option
D.
-x option
E.
None of the above
Answer: Option B
Solution
Answer: Option B
Solution:
In Unix, the cut command is used to extract sections from each line of input. The field separator, which specifies how the fields are separated in the input, is specified using the -d option followed by the delimiter character. For example, if you want to use a comma as the field separator, you would use cut -d','.So, -d option is used to specify the field separator in the cut command.