How to find the 51th record of a file containing 100 records in unix

  1. head -n 51 filename |tail -1

  2. head -51 |tail -1

  3. sed -n 51p

  4. All of the above


Correct Option: D

Find more quizzes: