The following command performs the given task. Note that output redirection must be done before error redirection to the lab1.all file.
What will be an ideal response?
```
$ find ~ -name lab1 1> lab1.all -print 2>&1
$
```
You could also use the find ~ -name lab1 2> lab1.all -print 1>&2 command to perform the same task.
Computer Science & Information Technology
You might also like to view...
When two files are linked, any changes made in one file will be reflected automatically in the other file
Indicate whether the statement is true or false
Computer Science & Information Technology
While creating a website for tablet design, to display the submenus horizontally rather than vertically, a style rule needs to be added to the tablet media query to _____.?
A. ?display the submenus one after the other B. ?float the submenus side-by-side C. ?reduce the width of the submenu display bars D. ?partially overlap the submenu titles
Computer Science & Information Technology