How to Write/Append Multiple Lines to a File from terminal?

Harish Kumar · · 5254 Views

Sometimes you might be needed to write or append some text to a file from the terminal. You can use different strategies to write multiple lines to a record file through the command line. This article explains some of them.

Append to a File using the Redirection Operator (>>) 

Redirection Operator (>>) allows you to catch the output from a command and send it as input to another command or file. You can use echo and printf commands with Redirection Operator (>>) to print text to the standard output and write it to the file.

To append text to a file, specify the name of the file after the redirection operator:

echo "this is a new line" >> file.txt

If you want to interpret the backslash-escaped characters such as newline \n, for that you need to use -e option with the echo command:

echo -e "this is a new line \nthis is another new line" >> file.txt

For more complex output, use the printf command, which allows you to specify the formatting of the output:

printf "Hello, I'm %s.\n" $USER >> file.txt

Another approach to add text to a file is to utilize the Heredoc. It is a sort of redirection that permits you to pass multiple lines of input to a command.

For instance, you can pass the content to the cat command and append it to a file:

echo "line 1 content
line 2 content
line 3 content" >> myfile.txt

You can append the output of any command to a file. Here is an example with the date command:

date +"Year: %Y, Month: %m, Day: %d" >> file.txt

When you are appending to a file using a redirection operator (>>), be mindful so as not to use the > operator, because it will overwrite the existing content of the file.

Append to a File using the "tee" Command 

tee is a command-line utility in Linux that reads from the standard input and writes to both standard output and multiple files simultaneously.

By default, the tee command overwrites the specified file. To append the output to the file, use tee with the -a (- -append) option:

echo "this is a new line"  | tee -a file.txt

If you do not want tee to write to the standard output, redirect it to /dev/null:

echo "this is a new line"  | tee -a file.txt >/dev/null

The benefit of utilizing the tee command over the >> operator is that tee allows you to append text to multiple documents at the same time, and to write to files owned by different users in conjunction with sudo.

To append text to a file that you don't have write permissions, prepend sudo before tee:

echo "this is a new line" | sudo tee -a file.txt

tee gets the output of the echo command, elevates the sudo permissions, and writes to the file.

To append text to multiple files, specify the files as arguments to the tee command:

echo "this is a new line"  | tee -a file1.txt file2.txt file3.txt
0

Please login or create new account to add your comment.

0 comments
You may also like:

How To Install NVM (Node Version Manager) on Ubuntu System?

This tutorial will assist you with installing NVM on the Ubuntu machine. Additionally, allow you to install different node versions and other useful examples.
Harish Kumar

Install Laravel Valet Linux+ development environment on Ubuntu System

The official Laravel Valet development environment is great if you are an Apple user. But there is no official Valet for Linux or Window system.
Harish Kumar

Install and Setup Oh-My-Zsh on Ubuntu System

In this post, I will show you how to install ZSH (Z-Shell). Then, we set up the oh-my-zsh framework for managing ZSH. We will likewise show you how to change the ZSH theme and (...)
Harish Kumar

10 Things to Do After Installing Ubuntu Operating System

In this article, I will show you 40 things you can do after installing Ubuntu on your system. This isn't restricted to a specific version of Ubuntu; you can follow these on any (...)
Harish Kumar

Ubuntu Installation step by step guide with disk partitioning

Ubuntu is the most loved OS for many desktop users, particularly for developers. Canonical releases new Ubuntu versions every six months with free support for nine months and every (...)
Harish Kumar

How to Install phpMyAdmin with Nginx on Ubuntu Server?

The phpMyAdmin is an open-source PHP-based tool for handle MySQL and MariaDB databases over a web-based interface. 
Harish Kumar