After opening vi, you can use tabe to open multiple files. I want to finish it in one sentence.
For example, vi a.c b.c c.c can open three tab pages at the same time.
Search help vi -h | grep tab得到-p[N] Open N tab pages (default: one for each file) That’s vi -p4 1.txt 2.txt 3.txt 4.txt That’s okay too vi -p 1.txt 2.txt 3.txt 4.txt
vi -h | grep tab
-p[N] Open N tab pages (default: one for each file)
vi -p4 1.txt 2.txt 3.txt 4.txt
vi -p 1.txt 2.txt 3.txt 4.txt
Personal test is feasible:)
Search help
vi -h | grep tab
得到-p[N] Open N tab pages (default: one for each file)
That’s
vi -p4 1.txt 2.txt 3.txt 4.txt
That’s okay too
vi -p 1.txt 2.txt 3.txt 4.txt
Personal test is feasible:)