UNIX
UNIX 1. How can you determine the space left in a file system? Level: Low Expected answer: There are several commands to do this: du, df, or bdf 2. How can you determine the number of SQLNET users logged in to the UNIX system? Level: Intermediate Expected answer: SQLNET users will show up with a process unique name that begins with oracle, if you do a ps -ef|grep oracle|wc -l you can get a count of the number of users. 3. What command is used to type files to the screen? Level: Low Expected answer: cat, more, pg 4. What command is used to remove a file? Level: Low Expected answer: rm 5. Can you remove an open file under UNIX? Level: Low Expected answer: yes 6. How do you create a decision tree in a shell script? Level: intermediate Expected answer: depending on shell, usually a case-esac or an if-endif or fi structure 7. What is the purpose of the grep command? Level: Low Expected answer: grep is a string search command that parses the specified string from t...