试题详情

linux命令中cat、more、less、tail、head均可用来查看文件内容,主要区别有: cat是一次性显示整个文件的内容,适用于文件内容少的情况; tail 和 head分别显示文件的后几行和前几行内容。常用于大文件的截取。 tail 用来显示文件的最后几行内容,当文件内容有更新时,tail会自己主动刷新,确保一直显示最新的文件内容。

Acat -f nginx.log

Btee -f nginx.log

Chead -f nginx.log

Dtail -f nginx.log