Which symbol will be used with grep command to match the pattern pat at the end of a line? $pat None of these pat^ pat$ ^pat TRUE ANSWER : ? YOUR ANSWER : ?
Which command sends the word count of the file infile to the newfile. wc newfile wc infile - newfile wc infile >newfile wc infile | newfile TRUE ANSWER : ? YOUR ANSWER : ?
Which column contains all details of the permissions of a file when you issue the ls -l command? fourth first second third TRUE ANSWER : ? YOUR ANSWER : ?
The octal representation 652 indicates Read and write permission of groups Write permission for others Execute permission for the owner All of these None of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following commands is used to absolutely assign all permissions to the owner, read and write permissions to the group and only executable permission to the others of the file note? chmod 167 note chmod 671 note chmod 761 note chmod 4=rwx, g=rw note TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following files will displayed by this command cat *ch* All of these .ch patch catch TRUE ANSWER : ? YOUR ANSWER : ?
Which command is used to copy all files having the string chap and any two characters after that to the progs directory? cp chap?? /progs/* cp chap[12] /progs/*.* cp chap?? progs cp chap* progs TRUE ANSWER : ? YOUR ANSWER : ?
Which command is used to extract specific columns from the file? cut grep paste cat TRUE ANSWER : ? YOUR ANSWER : ?
The agency that sits between the user and the UNIX system is called the shell logic profile erxc TRUE ANSWER : ? YOUR ANSWER : ?
Which command is used to list out all the hidden files along with the other files? ls -F ls -a ls -x ls -l TRUE ANSWER : ? YOUR ANSWER : ?