linux ---tail命令
linux中tail命令---用于查看文件内容最基本的是cat、more和less。1.如果你只想看文件的前5行,可以使用head命令,如:head -5 /etc/passwd2. 如果你想查看文件的后10行,可以使用tail命令,如:tail -2 /etc/passwd 或tail -n 2 /etc/passwdtail -f /var/log/messages参数-f使tail不停地去读...