Ch 4 Flashcards
less
Opens the text file in a pager, which allows for easy reading
cat
dumps the contents of the text file on the screen
head
Shows the first ten lines of the text file
tail
shows the last ten lines of the text file
cut
used to filter specific columns or characters from a text file
sort
sorts the contents of a text file
wc
counts the number of lines, words and characters in a text file
^text
Matches line that starts with specified text
text$
Matches line that ends with specified text
*
wildcard
[abc]
matches a, b or c
?
Extended regular expression that matches zero or one of the preceding character
+
Extended regular expression that matches on or more of the preceding characters
*
matches zero to an infinite number of the previous character
{2}
matches exactly two of the previous character