Linux下查看文件内容的几种方法
cat 查看文件的全部内容
head 查看文件前N行
tail 查看文件的最后N行
more 分页查看文件的全部内容
#! /bin/bash cat file.txt head -n 10 file.txt tail -n 10 file.txt more file.txt
Linux下查看文件内容的几种方法
cat 查看文件的全部内容
head 查看文件前N行
tail 查看文件的最后N行
more 分页查看文件的全部内容
#! /bin/bash cat file.txt head -n 10 file.txt tail -n 10 file.txt more file.txt