Multiple choice unix

Which option will be used with sort command to start sorting ofter the nth column of the (m+l)th field?

  1. -m.n

  2. +m.n

    • n.m+1
  3. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The sort command's +m.n option skips the first m fields, then skips n additional characters in the next field before sorting. This allows sorting to begin at a specific position within fields, ignoring leading characters or fields. The -k option (GNU sort extension) provides more flexible field specification.