ls 命令的实用范例
ls命令用于列出文件和目录:
1.无参数运行ls
[root@jxjy-v30-test4 /]# ls
2.列出详细信息
[root@jxjy-v30-test4 /]# ls -l
注:
3.列出文件大小
[root@jxjy-v30-test4 /]# ls -lh
4.列出文件大小并排序
[root@jxjy-v30-test4 /]# ls -lhS
5.按时间列出文件
[root@jxjy-v30-test4 /]# ls -lt
注: 使用-t选项会按修改时间排序,新的文件在前。