linux command

ed

Linux Command – ed ใช้เป็น editor file ชนิดหนึ่งแต่ไม่ได้รับความนิยมแล้วค่อนข้างใช้งานยาก

 

คำสั่ง

ed <file>

$ ls -ltr
total 4
-rw-r--r-- 1 root root 14 May 7 23:46 test1
$ sudo ed test1
14
w test2
14
q
$ ls -ltr
total 8
-rw-r--r-- 1 root root 14 May 7 23:46 test1
-rw-r--r-- 1 root root 14 May 7 23:46 test2
$

 

โครงสร้างคำสั่ง

 ed [options] [file]

 

รายละเอียด

เป็นคำสั่งที่ใช้แก้ไข file ที่ค่อนข้างใช้งานยากและไม่เป็นที่นิยม เท่า vi, vim, nano

 

Option

 -h, --help
 display this help and exit

 -V, --version
 output version information and exit

 -G, --traditional
 run in compatibility mode

 -l, --loose-exit-status
 exit with 0 status even if a command fails

 -p, --prompt=STRING
 use STRING as an interactive prompt

 -r, --restricted
 run in restricted mode

 -s, --quiet, --silent
 suppress diagnostics

 -v, --verbose
 be verbose

 Start edit by reading in 'file' if given. If 'file' begins with a '!', read output of shell command.

 Exit status: 0 for a normal exit, 1 for environmental problems (file not found, invalid flags, I/O errors, etc), 2 to indicate a corrupt or invalid input file, 3 for an internal
 consistency error (eg, bug) which caused ed to panic.

 

กลุ่มคำสั่ง

vi, vim, nano

 

Reference:

คำสั่ง Unix – Linux Command

Linux, Unix

 

Author: Suphakit Annoppornchai

Credit: https://saixiii.com

4 Thoughts to “ed – Linux Command คำสั่ง editor file ชนิดหนึ่ง”

Leave a Reply