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:

  1. stdin (STandarD INput)
  2. stdout (STandarD OUTput)
  3. stderr (STandarD ERRor)
stdin stdout stderr

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.

Redirecting output

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.

Redirecting output

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.


À propos de l'auteur

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.

UI_Icon-Red_Hat-Close-A-Black-RGB

Parcourir par canal

automation icon

Automatisation

Les dernières nouveautés en matière d'automatisation informatique pour les technologies, les équipes et les environnements

AI icon

Intelligence artificielle

Actualité sur les plateformes qui permettent aux clients d'exécuter des charges de travail d'IA sur tout type d'environnement

open hybrid cloud icon

Cloud hybride ouvert

Découvrez comment créer un avenir flexible grâce au cloud hybride

security icon

Sécurité

Les dernières actualités sur la façon dont nous réduisons les risques dans tous les environnements et technologies

edge icon

Edge computing

Actualité sur les plateformes qui simplifient les opérations en périphérie

Infrastructure icon

Infrastructure

Les dernières nouveautés sur la plateforme Linux d'entreprise leader au monde

application development icon

Applications

À l’intérieur de nos solutions aux défis d’application les plus difficiles

Virtualization icon

Virtualisation

L'avenir de la virtualisation d'entreprise pour vos charges de travail sur site ou sur le cloud