How to use linux's jed command to edit a text file
This article shows you how to use linux's jed command to edit a text file. There is a certain reference value, friends in need can refer to, hope to help you.
The jed command is used to edit text files. Jed is a program written in Slang, which is suitable for editing the original code of the program.
Syntax format: jed [parameters] [file]
Common parameters:
-2 display the upper and lower edit areas-batch executes in batch mode-g moves to the specified number of lines in the buffer-I loads the specified file into the buffer-s finds and moves to the specified string
Reference example
Edit the source file, and the syntax of the program is highlighted in color by default:
[root@linuxcool ~] # jed main.c
Execute the testfile file in batch mode:
[root@linuxcool ~] # jed-batch file
Loads the specified file into the buffer:
[root@linuxcool] # jed-I file
Move to the specified number of rows in the buffer:
[root@linuxcool] # jed-g 2 file
Find and move to the specified string:
[root@linuxcool] # jed-s "string" file above is a brief introduction to how to use linux's jed command to edit a text file. Of course, you have to use the above differences in detail before you understand it. If you want to know more, welcome to follow the industry information channel!