Use the find command to remove all the files in your home directory names core and those having the .bak extension. What command did you use?

The following session shows the command for performing the given task.

```
$ find ~ \( -name core -o -name ‘*.bak’ \) -print -exec rm {} \;
[ output of the command ]
$
```

Computer Science & Information Technology

You might also like to view...

Worms don't require human interaction to spread

Indicate whether the statement is true or false.

Computer Science & Information Technology

What is now the contents of the queue (with front of the queue listed leftmost)?

Given the following queue operations on an empty existing queue called nameQueue. nameQueue.enqueue(Bob) nameQueue.enqueue(Bill) nameQueue.enqueue(Bud) nameQueue.dequeue() nameQueue.enqueue(Boo) a. Bob, Bill, Bud b. Bob, Bud, Boo c. Bill, Bud, Boo d. Boo, Bud, Bill

Computer Science & Information Technology