linux常用命令四

1.file命令 查看文件属性

$file new_dir


2.查看文件内容

1)cat

$cat test_file

$cat -n test_file -n参数会给所有的行加上行号。

$cat -b test_file -b参数给有文本的行加上行号。

$cat -T test_file   让制表符出现,可以用-T参

2)more

$more /etc/bash.bashrc


3)less

$less /etc/bash.bashrc

4)tail 默认显示最后十行数据

$tail myfile

$tail -n 5 myfile 显示最后五行

5)head命令 默认显示前十行

$head myfile

$head -n 6 myfile显示前6行






猜你喜欢

转载自blog.csdn.net/h985161183/article/details/80581448
今日推荐