You run the wc -c file1.txt command. If this command displays any error message, you want to store the error message in
Posted: Fri Aug 26, 2022 9:54 am
You run the wc -c file1.txt command. If this command displays any error message, you want to store the error message in the error.txt file.Which of the following commands will you use to accomplish the task?
A. wc -c file1.txt >>error.txt
B. wc -c file1.txt 1>error.txt
C. wc -c file1.txt 2>error.txt
D. wc -c file1.txt >error.txt
A. wc -c file1.txt >>error.txt
B. wc -c file1.txt 1>error.txt
C. wc -c file1.txt 2>error.txt
D. wc -c file1.txt >error.txt