Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 300 Bytes

File metadata and controls

10 lines (9 loc) · 300 Bytes

🔁 Pipes & Redirection

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