Delete the myoutput.o file from your library file. Show your command line for doing so. Confirm the deletion of the file by displaying the new table of contents of the file. Show your session for performing these tasks.

What will be an ideal response?

```
$ ar -t ~/lib/mylib.a
mysocketlib.o
myoutput.o
myinput.o
$ ar d ~/lib/mylib.a myoutput.o
$ ar t ~/lib/mylib.a
mysocketlib.o
myinput.o
$
```

Computer Science & Information Technology

You might also like to view...

Which of the following PowerPoint features deactivates most PowerPoint tools and converts a presentation to read-only?

A) Mark as Final B) Accessibility Checker C) Compatibility Checker D) Document Inspector

Computer Science & Information Technology

Which of the following is a repetition structure?

a. if. b. if…else. c. do…while. d. switch.

Computer Science & Information Technology