Give commands for each of the following, using wildcards to express filenames with as few characters as possible.

Assume the following files are in the working directory:
$ ls
intro notesb ref2 section1 section3 section4b
notesa ref1 ref3 section2 section4a sentrev
a. List all files that begin with section.
b. List the section1, section2, and section3 files
only.
c. List the intro file only.
d. List the section1, section3, ref1, and ref3 files.


a. $ ls section*
b. $ ls section[1-3]
or
$ ls section[123]
c. $ ls i*
d. $ ls *[13]

Computer Science & Information Technology

You might also like to view...

A _____ line under a heading indicates subordinate text that is not displayed.

A. green B. blue C. gray D. red

Computer Science & Information Technology

A(n) ________ uses Web page servers and the same protocols as the Internet, but it is isolated from the rest of the Internet

Fill in the blank(s) with correct word

Computer Science & Information Technology

What smartcard standard is used to cover all U.S. government employees?

What will be an ideal response?

Computer Science & Information Technology

What is the starting point for investigating denial of service attacks?

A. Firewall logs B. Tracing the packets C. System logs D. E-mail headers

Computer Science & Information Technology