Multiple choice technology operating systems

Command to get the list of files/directories with name containing "UniVar" under the root directory excluding errors.

  1. find / -name "*UniVar*" $1>list
  2. find / -name "UniVar" $0>list
  3. find . -name "*UniVar*" $1>list
  4. find . -name "UniVar"

Reveal answer Fill a bubble to check yourself
A Correct answer