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:
Author: Suphakit Annoppornchai
Credit: https://saixiii.com
[…] ed, sed […]
[…] ed(1), grep(1), tr(1), […]
[…] ed, emacs, vim, gedit, nano, vimtutor(1) […]
[…] ed, emacs, vim, gedit, vi, vimtutor(1) […]