How to open files in centos7 system

王林
Release: 2020-03-16 19:25:50
Original
10581 people have browsed it

How to open files in centos7 system

1.

cat [-n] file [|more]
Copy after login

Among them, file is the file to be opened. The difference between this command and vim is that it opens the file in read-only mode and cannot be edited. -n means to display the line number; |more means to display in paging, enter key to scroll down one line, space bar to scroll down one page, and q key to exit.

(Recommended tutorial: centos usage tutorial)

2.

more file
Copy after login

Among them, file is the file to be opened. This command will display the file in full-screen paging mode, press Enter to turn to one line, Space to turn to one page, and press Q to exit.

3.

less file
Copy after login

Among them, file is the file to be opened. This command is very similar to more. The difference is that the entire file will not be loaded at once, but the part to be displayed will be loaded each time. Use the space to turn the page and the q key to exit.

Recommended related video tutorials: linux video tutorial

The above is the detailed content of How to open files in centos7 system. 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!