1. ls 显示目录下的内容
- [root@localhost ~]# ls
- [root@localhost ~]# Is -a
- -a:显示所有文件;
- --color=when:支持颜色输出,when 的值默认是 always(总显示颜色),也可以是 never(从不显示颜色)和 auto(自动);
- -d:显示目录信息,而不是目录下的文件;
- -h:人性化显示,按照我们习惯的单位显示文件大小;
- -i:显示文件的 i 节点号;
- -l:长格式显示;
2. cd 切换所在目录
[root@localhost ~]# cd /usr/local/src/
简化用法:
符号 | 作 用 |
~ | 代表用户的家目录 |
- | 代表上次所在目录 |
. | 代表当前目录 |
.. |
代表上级目录 |
3. mkdir 创建目录
- [root@localhost ~]#mkdir cangls 建立目录
- [root@localhost ~]# mkdir -p lm/movie/jp/cangls 递归建立目录
4.rmdir 删除目录 , 但 rmdir 命令的作用十分有限,因为只能刪除空目录,所以一旦目录中有内容,就会报错
- [root@localhost ~]#rmdir cangls 刪除目录
- [root@localhost ~]# rmdir -p lm/movie/jp/cangls/ 递归刪除目录
5.touch 果文件不存在,则会建立空文件;如果文件已经存在,则会修改文件的时间戳(访问时间、数据修改时间、状态修改时间都会改变)
[root@localhost ~]#touch bols #建立名为 bols 的空文件
- -a:只修改文件的访问时间(Access Time)
- -c:如果文件不存在,则不建立新文件
- -d:把文件的时间改为指定的时间
- -m:只修改文件的数据修改时间(Modify Time)
6. stat 查看文件详细信息 ,文件有访问时间、数据修改时间、状态修改时间这三个时间,而没有创建时间。stat 是査看文件详细信息的命令,而且可以看到文件的这三个时间
- [root@localhost ~]# stat anaconda-ks.cfg 査看文件的详细信息
- [root@localhost ~]#stat -f anaconda-ks.cfg 査看文件系统信息
7. cat 查看文件内容
常见用法:
[root@localhost ~]# cat -n anaconda-ks.cfg
8. more 查看文件内容,可交互
- [root@localhost ~]# more anaconda-ks.cfg
- 空格键:向下翻页。
- b:向上翻页。
- 回车键:向下滚动一行。
- / 字符串:搜索指定的字符串。
- q:退出。
9.head 显示文件开头的内容,默认10行,-n,
- [root@localhost ~]# head anaconda-ks.cfg
- [root@localhost ~]# head -n 20 anaconda-ks.cfg
- [root@localhost ~]# head -20 anaconda-ks.cfg
10.tail 显示文件结尾的内容,默认10行,-n,-23,-f
- [root@localhost ~]# tail anaconda-ks.cfg 默认10行
- [root@localhost ~]# tail -n 20 anaconda-ks.cfg 显示20行
- [root@localhost ~]# tail -20 anaconda-ks.cfg 显示20行
- root@localhost ~]#tail -f anaconda-ks.cfg ,使用"-f"选项来监听文件的新増内容