Tool Groupings: Linux Pocket Hand Book Flashcards
Linux essential commands pocket book
1
Q
File text manipulation
A
- grep
- cut
- paste
- tr
- expand, unexpand
- sort
- uniq
- tee
___
- grep
- Find lines in a file that match a regular expression
- cut
- Extract columns from a file
- paste
- Append columns
- tr
- Translate characters into other characters
- expand, unexpand
- Covert between tabs and spaces
- sort
- Sort lines of text by various criteria
- uniq
- Locate identical lines in a file
- tee
- Copy a file and print it on standard output, simultaneously