UsefulLinks
Computer Science
Operating Systems
Linux
Linux Command Line
1. Introduction to the Command Line
2. Navigating the Filesystem
3. Working with Files and Directories
4. Viewing and Editing Files
5. Permissions and Ownership
6. Process Management
7. Input/Output Redirection and Pipes
8. Searching and Text Processing
9. System Information and Administration
10. Networking
11. Archiving and Compression
12. Shell Environment and Customization
13. Introduction to Shell Scripting
7.
Input/Output Redirection and Pipes
7.1.
Standard Streams
7.1.1.
Standard Input (stdin)
7.1.2.
Standard Output (stdout)
7.1.3.
Standard Error (stderr)
7.2.
Output Redirection
7.2.1.
Redirect stdout (Overwrite)
7.2.2.
Redirect stdout (Append)
7.2.3.
Redirect stderr
7.2.4.
Redirect Both stdout and stderr
7.2.5.
Redirecting to /dev/null
7.3.
Input Redirection
7.3.1.
Redirect stdin from File
7.4.
Here Documents
7.4.1.
Syntax and Usage
7.4.2.
Quoting in Here Documents
7.5.
Pipes
7.5.1.
Pipe Operator
7.5.2.
Chaining Commands
7.5.3.
Combining Pipes and Redirection
7.6.
Tee Command
7.6.1.
Duplicating Output to Files and stdout
Previous
6. Process Management
Go to top
Next
8. Searching and Text Processing