InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a valid option of uname?(a) -a(b) -s(c) -v(d) -zThis question was addressed to me in an interview for job.This intriguing question originated from Commands topic in division The Unix Architecture & General Purpose Utilities of Unix |
|
Answer» CORRECT choice is (d) -z Easiest EXPLANATION: UNAME command is used for PRINTING the information about the current system.-a is used for printing all the information including version NAME, kernel name, kernel release, machine hardware name etc. -s is used for printing only the kernel name while -v is used for printing the kernel version. |
|