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.
滿天的星座2017-05-16 16:42:57
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:)