πŸ“Š Linux
Q. Which of the following would alphabetize the file mylist, number the list, and then separate it into files each with 60 lines?
  • (A) sort mylist | nl | tee lists | split -60 lists
  • (B) sort mylist | nl | split -60 lists
  • (C) sort mylist > nl > split -60 > lists
  • (D) sort mylist | nl > -60 lists
πŸ’¬ Discuss
βœ… Correct Answer: (A) sort mylist | nl | tee lists | split -60 lists

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
200
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
88%
Success Rate