Detailed explanation of Linux command file overwrite and file append

Detailed explanation of Linux command file overwrite and file append

1. The difference between the command > and >>

Command>: If the file exists, overwrite the original file's contents; if the original file does not exist, create the file and then add the information.
Command >>: will not overwrite the original file content, but append the content to the end of the file.

2. Basic grammar (just understand the difference between > and >>)

Basic syntax Functional Description
ls -l >filename Write the list contents to file
ls -l >filename Append the contents of the list to the end of the file
cat file1 > file2 Overwrite the contents of file 1 to file 2
echo "content" > filename Write the contents to the file

3. Example:

ls -l > filename:

ls -l >>filename:

Other commands are similar. I won’t go into details, you can verify it yourself.

The above is the detailed explanation and integration of Linux command file overwriting and file appending introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Summary of useful commands such as clearing files in Linux
  • How to use cp command to implement forced overwrite function in Linux system
  • Linux background running node service command method
  • Summary of Linux daily commonly used commands and applications
  • Summary of common Linux commands under Ubuntu
  • Detailed explanation of info command in Linux
  • A brief discussion on whoami and who commands in Linux
  • Detailed explanation of the Crontab command in Unix/Linux
  • In-depth explanation of Linux grep command (practical)

<<:  What scenarios are not suitable for JS arrow functions?

>>:  mysql5.6.8 source code installation process

Recommend

Detailed explanation of Linux copy and paste in VMware virtual machine

1. Linux under VMware Workstation: 1. Update sour...

Solution to the automatic termination of docker run container

Today I encountered a problem when I used Dockerf...

202 Free High Quality XHTML Templates (2)

Following the previous article 202 Free High-Qual...

MySQL msi installation tutorial under windows10 with pictures and text

1. Download 1. Click the latest download from the...

In-depth explanation of MySQL stored procedures (in, out, inout)

1. Introduction It has been supported since versi...

VMware installation of Centos8 system tutorial diagram (Chinese graphical mode)

Table of contents 1. Software and system image 2....

Example of how to configure cross-domain failure repair in nginx

Nginx cross-domain configuration does not take ef...

How to deeply understand React's ref attribute

Table of contents Overview 1. Creation of Refs ob...

MySQL installation tutorial under Windows with pictures and text

MySQL installation instructions MySQL is a relati...

XHTML Getting Started Tutorial: XHTML Web Page Image Application

<br />Adding pictures reasonably can make a ...

MySQL data aggregation and grouping

We often need to summarize data without actually ...

ElementUI implements the el-form form reset function button

Table of contents Business scenario: Effect demon...

Comprehensive understanding of HTML Form elements

As shown below: XML/HTML CodeCopy content to clip...