Working with shell scripts has always been interesting for programmers and sysadmins because the output helps both of them with debugging and monitoring. The configuration of most Linux distributions is largely based on files, so it is important to understand the concept of writing data to a text file using a script or redirecting output at the command line.
Linux uses three main data streams while communicating to the user and the computer:
- stdin (STandarD INput)
- stdout (STandarD OUTput)
- stderr (STandarD ERRor)

1. stdin
This is the data stream for the input of information. Any input from any device such as a keyboard or a mouse comes under the standard input data stream. stdin is represented by 0 Stream ID.
[ You might also enjoy reading: Five ways to use redirect operators in bash ]
2. stdout
This is the data stream for the output of data. The output from devices (like monitor, speaker, etc.) comes under the standard output data stream. stdout is represented by 1 Stream ID.
3. stderr
Standard error is used to handle any errors produced by the commands. Any device stream (like monitor, speaker, etc.) that warns the user that something has gone wrong comes under stderr. stderr is represented by 2 Stream ID.
How do you write data to a file?
Use redirection operators to fetch the data from the stdout and stderr streams and redirect them to a text file.
Redirection: Redirection is a Linux feature used to change input/output devices while executing a command.
Output/error redirection
To write data to a text file from a Bash script, use output/error redirection with the >
and >>
redirection operators.
>
Overwrites data in a text file.
>>
Appends data to a text file.
Creating a basic script and understanding the redirection
date >> test1.txt
who >> test1.txt
date > test2.txt
who > test2.txt
Here the output of both commands will be appended to test1.txt
while test2.txt
will contain only the output of the who
command.

Working further with redirection
The above script will redirect only the output and will fail in case of error. To work with redirection for output, error, or both, you must specify the extra parameters.
For redirecting output: >
or >>
or 1>
or 1>>
For redirecting error: 2>
or 2>>
For redirecting both: &>
or &>>
Redirecting errors
date --who 2>> test1.txt
who 2>> test1.txt
For redirecting only the errors, you've specified the specific parameter for the error. The output file will contain only the output of the first command because it has a wrong argument.

Other arguments can be used interchangeably to achieve different functionality.
Writing the script for other commands is the same as the above script and requires the operators displayed above.
[ Download now: A sysadmin's guide to Bash scripting. ]
Wrap up
Redirecting data to stdout or stderr is very useful to developers and sysadmins alike. Understanding these tools and their results will help you create new files, troubleshoot, and gather system information.
About the author
Kshitiz Saini is a pre-final year as a Computer Science undergraduate at the University of Petroleum and Energy Studies, Dehradun, and a tech enthusiast who seeks experience by learning to increase his knowledge along with having some fun. Kshitiz is a C++ developer who loves to explore new technologies, develop software solutions, and use quick hacks. He is skilled in DevOps and Cloud Computing and is actively looking for summer internship opportunities.
Kshitiz is the founder of a tech-community dotQuestionmark which aims to provide tech geeks with the latest tech information and an instructor at dotQuestionmark where he has mentored more than 1500 students in Git, Python, Linux, and C++. Previously, he was an intern at Clay Engage and OpenGenus Foundations where he worked as a Web and App Developer intern and a Software Developer intern, respectively.
Browse by channel
Automation
The latest on IT automation for tech, teams, and environments
Artificial intelligence
Updates on the platforms that free customers to run AI workloads anywhere
Open hybrid cloud
Explore how we build a more flexible future with hybrid cloud
Security
The latest on how we reduce risks across environments and technologies
Edge computing
Updates on the platforms that simplify operations at the edge
Infrastructure
The latest on the world’s leading enterprise Linux platform
Applications
Inside our solutions to the toughest application challenges
Original shows
Entertaining stories from the makers and leaders in enterprise tech
Products
- Red Hat Enterprise Linux
- Red Hat OpenShift
- Red Hat Ansible Automation Platform
- Cloud services
- See all products
Tools
- Training and certification
- My account
- Customer support
- Developer resources
- Find a partner
- Red Hat Ecosystem Catalog
- Red Hat value calculator
- Documentation
Try, buy, & sell
Communicate
About Red Hat
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
Select a language
Red Hat legal and privacy links
- About Red Hat
- Jobs
- Events
- Locations
- Contact Red Hat
- Red Hat Blog
- Diversity, equity, and inclusion
- Cool Stuff Store
- Red Hat Summit