What does centos7 cat command mean?

藏色散人
Release: 2022-01-28 14:38:48
Original
6545 people have browsed it

centos7 cat is a command used to connect files or standard input and print. Simply put, the cat command is used to view plain text files. Used in conjunction with redirection symbols, it can create files and merge files. .

What does centos7 cat command mean?

The operating environment of this article: CentOS 7 system, DELL G3 computer

Centos 7 cat command

1. Command introduction

We use the man cat command. You can see that the cat command is used to connect files or standard input and print. Simply put, the cat command is used to view plain text files (usually For files with less content), used in conjunction with the redirection symbol, you can create and merge files.

2. Example

1. Use the cat command to view the file

We use the cat command to view the study.txt file

We use cat -n to open the study.txt file

You can see, In front of each line of text content, there will be numbers displayed. These numbers are the line numbers.

2. Use the cat command to create a file

Use the cat command to create a file named test.txt

Enter cat > test.txt , then enter the text we want to enter. After entering, you can press ctrl C to exit

Use ls to check whether there is anything just created test.txt file.

You can see that the test.txt file has been created, and the content is exactly what we just entered.

3. Merge file contents

Merge study.txt and test.txt into one file, the file name is file.txt

##Execute cat study.txt test.txt > file.txt

You can see that the content of file file.txt is study.txt test. txt content.

3. Summary

The above is the basic usage of cat command that I have learned so far. As the learning progress progresses, I will also share more in-depth usage with you. Everyone, let’s encourage each other on the road of learning.

Recommended: "

centos usage tutorial"

The above is the detailed content of What does centos7 cat command mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!