What is the comma to show the space allocation of files?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the usage and functionality of the command rm –r * in unix?
Which command will you use to change the permissions on file?
What does sed command do in unix?
What does #!/ Bin sh do?
What are file commands?
What is the command to view process running?
How do I find previous commands in unix?
What is the use of pipes?
How do you list the files in an UNIX directory while also showing hidden files?
What is the behavioural difference between cmp and diff commands?
How to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.
3 Answers Amazon, MBA, Syntel, TCS, Unisys,
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above