command > file.txt # Redirect output
command >> file.txt # Append output
command < input.txt # Use file as input
ls | less # Paginate list
ls | grep name # Filter with grep
cat file1 file2 > all.txt # Merge files