click below
click below
Normal Size Small Size show me how
Intro to Linux cis 1
Coding
| Term | Definition |
|---|---|
| What character can be used to take the output of one command and use it as input to another command? | | |
| Which of the below commands will redirect a command's errors to a file named Errors. Pick all that apply A) cp myfile yourfile > Errors 2>&1 B) cp myfile yourfile > errors 2>&1 C) cp file1 file2 > Errors D) ls file 2> Errors | A, B |
| Which of the following commands would include in its output the number of lines that exist in the message file? Pick all that apply. A) ls message B) cat message C) wc -c message D) wc -l < message E) wc message F) wc -l message | D,E,F |