Unix - Study Mode
[#1081] Which of the following command will be used to locate those files that have not been modified for more than a year?
Correct Answer
(C) find . -mtime +365 -print
[#1082] What are escape sequences?
Correct Answer
(A) special characters beginning with a (backslash)
[#1083] What is the correct syntax for using sed?
Correct Answer
(C) sed options 'address action' file(s)
[#1084] Which of the following commands is used to get directory one level up?
Correct Answer
(B) cd ..
[#1085] Which of the following commands is used to count the total number of lines, words, and characters contained in a file.
Correct Answer
(B) wc