This document provides summaries of Linux commands that can be used to select and manipulate parts of files. It discusses the cat, head, tail, cut, split, sort, tac, uniq, and tr commands. Cat concatenates or displays files, head displays the first few lines of a file, and tail displays the last few lines. Cut extracts columns from a file, split divides a file into smaller parts, and sort sorts lines alphabetically or numerically. Tac displays the lines of a file in reverse order and uniq removes duplicate lines from a sorted file. Tr translates characters within a file, such as converting uppercase to lowercase.