Shell Fundamentals
The power of linux comes from the shell and its commands. Mastery of the shell requires a fundamental understanding of how inputs, outputs, and errors work when using commands.
Inputs
You can provide input
- From your keyboard --> Standard Input.
- From a file --> Redirecting Standard Input
Outputs
The output can be
- Printed onto your terminal --> Standard Output
- Written to a file --> Redirecting Standard Output
Errors
Errors can be
- Printed onto your terminal --> Standard Error
- Written to a file --> Redirecting Standard Error
Links
See next --> String Commands Together
References
Tags
#linux