标签:linux命令-ls
ls :list directory contents 列出目录内容
ls选项 :
-a :do not ignore entries starting with . :不忽略包含起始.的文件(隐藏文件)
-A :do not list implied . and .. :列出不包含.和..的文件,但是会包含以.开头的其他文件
-l :use a long listing format :使用长列表格式,会输出详细信息
-i :print the index number of each file :打印每个文件的index号
-d :list directory entries instead of contents, and do not dereference symbolic links 显示当前目录信息,不引用符号链接,通常和-l连用
-h :with -l, print sizes in human readable format (e.g., 1K 234M 2G) :使用人类易读的方式打印大小
-s :print the allocated size of each file, in blocks :文件存储在硬盘上是以磁盘块的方式分配磁盘空间存储,使用-s可以查看文件被分配了多少个磁盘块
-S :sort by file size :文件大小排序
标签:linux命令-ls
原文地址:http://fbzl1990.blog.51cto.com/9276609/1739835