What is the expected output from the following commands?



Given the following directory listing:

$ ls

feb96

jan12.02

jan19.02

jan26.02

jan5.02

jan95

jan96

jan97

jan98

mar98

memo1

memo10

memo2

memo2.sv

$


echo *
feb96 jan12.02 jan19.02 jan26.02 jan5.02 jan95 jan96 jan97 jan98 mar98 memo1 memo10 memo2 memo2.sv

echo *[!0-9]
memo2.sv

echo m[a-df-z]*
mar98

echo [A-Z]*
[A-Z]*

echo jan*

jan12.02 jan19.02 jan26.02 jan5.02 jan95 jan96 jan97 jan98

echo *.*
jan12.02 jan19.02 jan26.02 jan5.02 memo2.sv

echo ?????
feb96 jan95 jan96 jan97 jan98 mar98 memo1 memo2

echo *02
jan12.02 jan19.02 jan26.02 jan5.02

echo jan?? feb?? mar??
jan95 jan96 jan97 jan98 feb96 mar98

echo [fjm][ae][bnr]*
feb96 jan12.02 jan19.02 jan26.02 jan5.02 jan95 jan96 jan97 jan98 mar98

Computer Science & Information Technology

You might also like to view...

What elements are in the array newArray after the following code is executed?

``` Dim firstArray() As Integer = {1, 2, 3} Dim secondArray() As Integer = {3, 4, 5, 6} Dim newArray() As Integer = firstArray.Union(secondArray).ToArray ``` (A) 1, 2, 3, 3, 4, 5, 6 (B) 1, 2, 3, 4, 5, 6 (C) 3 (D) 1, 2

Computer Science & Information Technology

Which of the following file systems uses a 32-bit numbering system to increase the number of data blocks that can be managed and organized as part of a single partition?

A. FAT16 B. FAT20 C. FAT32 D. NTFS32

Computer Science & Information Technology

A ________ button sends information from a visitor to the owner of a Web site

Fill in the blank(s) with correct word

Computer Science & Information Technology

To prevent ESD, which two of the following are the most effective? (Select two.)

A) Use an antistatic wrist strap. B) Use antistatic spray on a lint free cloth and apply to the monitor. C) Use antistatic spray or diluted fabric softener on carpet. D) Put the computer on an antistatic mat. E) Touch the computer once on a metal part before you remove any component. F) Place the disconnected power cord between you and the computer if you do not have an antistatic wrist strap.

Computer Science & Information Technology