27 Linux document editing commands worth collecting

27 Linux document editing commands worth collecting

Linux col command

The Linux col command is used to filter control characters.

In many UNIX documentation, there is the RLF control character. When we use the shell special characters ">" and ">>" to output the contents of the description file into a plain text file, the control characters will become garbled characters. The col command can effectively filter out these control characters.

Linux colrm command

The Linux colrm command is used to filter out specified lines.

The colrm command reads the log from the standard input device and outputs it to the standard output device. If no parameters are given, this command will not filter any lines.

Linux comm command

The Linux comm command is used to compare two sorted files.

This command compares two sorted files column by column and displays the results. If no parameters are given, the results are displayed in 3 lines: the first line contains only the columns that appear in the first file, the second line contains only the columns that appear in the second file, and the third line contains the columns that appear in both the first and second files. If the file name given is "-", the comm command will read data from the standard input device.

Linux csplit command

The Linux csplit command is used to split files.

After the files are cut according to the specified template style, they are saved as files named xx00, xx01, xx02... If the file name given is "-", the csplit command will read data from the standard input device.

Linux ed command

The Linux ed command is a text editor used for text editing.

Ed is the simplest text editor in Linux, which can only edit one line at a time instead of operating in full-screen mode.

The ed command is not a commonly used command. The vi command is generally used more often. But the ed text editor is useful for editing large files or for text editing in shell scripts.

Linux egrep command

The Linux egrep command is used to search for a specified string in a file.

The execution effect of egrep is similar to "grep -E". The syntax and parameters used can refer to the grep command. The difference from grep lies in the method of interpreting the string.

egrep is interpreted using the extended regular expression syntax, while grep is interpreted using the basic regular expression syntax. The extended regular expression is more standardized than the basic regular expression.

Linux ex command

The Linux ex command is used to start the vim text editor in Ex mode.

The execution effect of ex is the same as vi -E. The syntax and parameters can be referred to the vi command. To return to normal mode from Ex mode, enter the ":vi" or ":visual" command in vim.

Linux fgrep command

This command is equivalent to executing the grep command with the parameter "-F".
The Linux fgrep command is used to search for matching strings in files.

Linux fmt command

The Linux fmt command is used to format text files.

The fmt command reads the contents from the specified file, rearranges it according to the specified format, and outputs it to the standard output device. If the specified file name is "-", the fmt command will read data from the standard input device.

Linux fold command

The Linux fold command is used to limit the file column width.

The fold command reads the contents from the specified file, adds column extension characters to the columns that exceed the specified column width, and then outputs them to the standard output device. If no file name is specified, or the file name given is "-", the fold command will read data from the standard input device.

Linux grep command

The Linux grep command is used to search for matching strings in files.

The grep command is used to search for files whose contents contain a specified template style. If a file's contents are found to match the specified template style, the default grep command will display the column containing the template style. If no file name is specified, or the file name given is "-", the grep command will read data from the standard input device.

Linux ispell command

The Linux ispell command is used for spell checker.

By default, ispell uses the /usr/lib/ispell/english.hash dictionary file to check text files. If ispell finds words in the checked file that are not in the dictionary, it will suggest new words to use or allow you to add new words to your personal dictionary.

Linux jed command

The Linux jed command is used to edit text files.
Jed is a program written in Slang and is suitable for editing program source code.

Linux joe command

The Linux joe command is used to edit text files.

Joe is a powerful full-screen text editing program. The operation is a little more complicated than Pico, but the functions are more complete. Joe can open multiple files at a time, place each file in an editing area, and perform cut and paste operations between files.

Linux join command

The Linux join command is used to connect the lines with the same content in the specified field in two files.
Find the lines in two files with the same content in the specified field, merge them, and output them to the standard output device.

Linux look command

The Linux look command is used to search for words.
The look command is used to search for English words. You just give it the prefix string you want to search for, and it will display all the words that begin with that string.

Linux mtype command

mtype is an mtools tool command that simulates the MS-DOS type command and can display the contents of MS-DOS files.

Linux pico command

The Linux pico command is used to edit text files.

Pico is an easy-to-use, display-oriented text editor that comes with pine, a program for handling email and newsgroups.

Linux rgrep command

The Linux rgrep command is used to recursively search for matching strings in files.

The function of the rgrep command is similar to that of the grep command. It can search for files whose contents contain a specified template style. If a file's content is found to match the specified template style, the default rgrep command will display the column containing the template style.

Linux sed command

The Linux sed command uses script to process text files.
sed can process and edit text files according to the instructions of the script.
Sed is mainly used to automatically edit one or more files; simplify repetitive operations on files; write conversion programs, etc.

Linux sort command

The Linux sort command is used to sort the contents of text files.
Sort can sort the contents of text files in lines.

Linux spell command

The Linux spell command creates a spell checker.
spell reads a string from standard input and displays the misspelled words after it finishes.

Linux tr command

The Linux tr command is used to convert or delete characters in a file.
The tr command reads data from the standard input device, translates the string, and outputs the result to the standard output device.

Linux expr command

The expr command is a manual command line counter used to evaluate expression variables in UNIX/LINUX. It is generally used for integer values, but can also be used for strings.

Linux uniq command

The Linux uniq command is used to check and delete repeated lines and columns in text files.

uniq can check for repeated occurrences of lines and columns in a text file.

Linux wc command

The Linux wc command is used to count words.

Using the wc command, we can calculate the number of bytes, words, or columns in a file. If the file name is not specified, or the given file name is "-", the wc command will read data from the standard input device.

Linux let command

Command: let

The let command is a tool used for calculation in BASH. It is used to execute one or more expressions. There is no need to add $ to indicate the variable in variable calculation. If the expression contains spaces or other special characters, they must be enclosed in quotes.

recommend:

Interested friends can follow the editor’s WeChat public account [ Coder’s Stuff ] for more web page production special effects source code and learning materials! ! !

Summarize

The above are 27 Linux document editing commands worth collecting that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
  • 10 Popular Windows Apps That Are Also Available on Linux
  • Detailed explanation of Win10 Bash/WSL debugging .NET Core applications in Linux environment
  • How to use Crontab to regularly monitor and maintain Tomcat applications in Linux
  • Running Windows Applications on Linux
  • Scary Halloween Linux Commands
  • Detailed tutorial on compiling and installing python3.6 on linux
  • Tutorial on configuring and using i3 window manager in Linux
  • 10 reasons why Linux is becoming more and more popular
  • 11 Linux KDE applications you didn't know about

<<:  Detailed explanation of when javascript scripts will be executed

>>:  Detailed explanation of JavaScript event concepts (distinguishing between static registration and dynamic registration)

Recommend

Vue two-choice tab bar switching new approach

Problem Description When we are working on a proj...

Application of Hadoop counters and data cleaning

Data cleaning (ETL) Before running the core busin...

Problems and experiences encountered in web development

<br />The following are the problems I encou...

Tomcat Nginx Redis session sharing process diagram

1. Preparation Middleware: Tomcat, Redis, Nginx J...

You may need a large-screen digital scrolling effect like this

The large-screen digital scrolling effect comes f...

Serial and parallel operations in JavaScript

Table of contents 1. Introduction 2. es5 method 3...

Detailed graphic tutorial on how to enable remote secure access with Docker

1. Edit the docker.service file vi /usr/lib/syste...

Detailed explanation of how to install MySQL on Alibaba Cloud

As a lightweight open source database, MySQL is w...

VUE+Canvas realizes the whole process of a simple Gobang game

Preface In terms of layout, Gobang is much simple...

Pure CSS to achieve left and right drag to change the layout size

Utilize the browser's non- overflow:auto elem...

27 Linux document editing commands worth collecting

Linux col command The Linux col command is used t...

Common writing examples for MySQL and Oracle batch insert SQL

Table of contents For example: General writing: S...

Drop-down menu and sliding menu design examples

I found a lot of websites that use drop-down or sl...