Process Text Files Flashcards
OBJ 3.1
1
Q
printf command
A
Provides the user with more control over how the output is formatted
2
Q
tr command
A
Perform operations like removing repeated characters, converting uppercase to lowercase, and basic character replacement and removal
3
Q
sort command
A
Command line utility for sorting lines of text files
4
Q
wc command
A
Allows users to count the number of lines, words, characters, and bytes in file and print the result
5
Q
diff command
A
Used to compare text files
6
Q
diff <
A
Line should be removed from the first file
7
Q
diff >
A
Line should be added from the second file
8
Q
awk
A
Performs pattern matching on files
9
Q
/regular_expression/
A
Retrieves all the records beginning with “a”, “b”, or “c”
10
Q
A