3377 Quiz04 Unix Commands: Grep, Sort, and Regular Expressions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/19

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

3

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

grep '[0-9]\{3\}[8]' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

2
New cards

Sort option: -c

Test to see if the file is already sorted

3
New cards

Sort option: -m

Merge two sorted files

4
New cards

Sort option: -u

Delete all duplicate lines

5
New cards

Sort option: -o

Name of an output file, for the sort results

6
New cards

Sort option: -b

Ignore any leading blanks, when using fields to sort on

7
New cards

Sort option: -n

Specify that this sort is to be a numerical sort on this field(s)

8
New cards

Sort option: -t

Field separator; the fields are separated by non-blanks or a tab

9
New cards

Sort option: -r

Reverse the sort order or comparisons

10
New cards

4

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

grep '[0-9][0-5][0-6]' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

11
New cards

3

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

grep '[A-Z][A-Z]..C' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

12
New cards

2

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

Result of grep 'K...D' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

13
New cards

1

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

Result of grep '^[0-9][0-5][0-6]' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

14
New cards

2

[Unix&Shell4grep]What would be the result (the number of the output lines) of the following grep command with the data.txt as shown below.

grep '5..199[6,8]' data.txt

where the content of data.txt is:
48 Dec 3BC1997 CPPX 68.00 LVX2A 138
483 Sept 5AP1996 USP 65.00 LVX2C 189
47 Oct 3ZL1998 CPPX 43.00 KVM9D 512
219 dec 2CC1999 CAD 23.00 PLV2C 68
484 nov 7PL1996 CAD 49.00 PLV2C 234
483 may 5PA1998 USP 37.00 KVM9D 644
216 sept 3ZL1998 USP 86.00 KVM9E 234

15
New cards

[[:upper:]]

[A-Z]

16
New cards

[[:lower:]]

[a-z]

17
New cards

[[:digit:]]

[0-9]

18
New cards

[[:alnum:]]

[0-9a-zA-Z]

19
New cards

[[:space:]]

A space or a tab

20
New cards

[[:alpha:]]

[a-zA-Z]