列出目录内容命令ls

ls帮助文件
[plain]  view plain  copy
  1. bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:$ ls --help  
  2. 用法:ls [选项]... [文件]...  
  3. List information about the FILEs (the current directory by default).  
  4. Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.  
  5. 长选项必须使用的参数对于短选项时也是必需使用的。  
  6. -a, --all 不隐藏任何以. 开始的项目  
  7. -A, --almost-all 列出除. 及.. 以外的任何项目  
  8. --author 与-l 同时使用时列出每个文件的作者  
  9. -b, --escape 以八进制溢出序列表示不可打印的字符  
  10. --block-size=SIZE scale sizes by SIZE before printing them. E.g.,  
  11. '--block-size=M' prints sizes in units of  
  12. 1,048,576 bytes. See SIZE format below.  
  13. -B, --ignore-backups do not list implied entries ending with ~  
  14. -c with -lt: sort by, and show, ctime (time of last  
  15. modification of file status information)  
  16. with -l: show ctime and sort by name  
  17. otherwise: sort by ctime, newest first  
  18. -C list entries by columns  
  19. --color[=WHEN] colorize the output. WHEN defaults to 'always'  
  20. or can be 'never' or 'auto'. More info below  
  21. -d, --directory list directory entries instead of contents,  
  22. and do not dereference symbolic links  
  23. -D, --dired generate output designed for Emacs' dired mode  
  24. -f do not sort, enable -aU, disable -ls --color  
  25. -F, --classify append indicator (one of */=>@|) to entries  
  26. --file-type likewise, except do not append '*'  
  27. --format=WORD across -x, commas -m, horizontal -x, long -l,  
  28. single-column -1, verbose -l, vertical -C  
  29. --full-time like -l --time-style=full-iso  
  30. -g 类似-l,但不列出所有者  
  31. --group-directories-first  
  32. 在文件前分组目录。此选项可与--sort 一起使用,  
  33. 但是一旦使用--sort=none (-U)将禁用分组  
  34. -G, --no-group 以一个长列表的形式,不输出组名  
  35. -h, --human-readable 与-l 一起,以易于阅读的格式输出文件大小  
  36. (例如 1K 234M 2G)  
  37. --si 同上面类似,但是使用1000 为基底而非1024  
  38. -H, --dereference-command-line  
  39. 跟随命令行列出的符号链接  
  40. --dereference-command-line-symlink-to-dir  
  41. 跟随命令行列出的目录的符号链接  
  42. --hide=PATTERN 隐藏符合PATTERN 模式的项目  
  43. (-a 或 -A 将覆盖此选项)  
  44. --indicator-style=WORD append indicator with style WORD to entry names:  
  45. none (default), slash (-p),  
  46. file-type (--file-type), classify (-F)  
  47. -i, --inode print the index number of each file  
  48. -I, --ignore=PATTERN do not list implied entries matching shell PATTERN  
  49. -k, --kibibytes use 1024-byte blocks  
  50. -l 使用较长格式列出信息  
  51. -L, --dereference 当显示符号链接的文件信息时,显示符号链接所指示  
  52. 的对象而并非符号链接本身的信息  
  53. -m 所有项目以逗号分隔,并填满整行行宽  
  54. -n, --numeric-uid-gid 类似 -l,但列出UID 及GID 号  
  55. -N, --literal 输出未经处理的项目名称 (如不特别处理控制字符)  
  56. -o 类似 -l,但不列出有关组的信息  
  57. -p, --indicator-style=slash 对目录加上表示符号"/"  
  58. -q, --hide-control-chars print ? instead of non graphic characters  
  59. --show-control-chars show non graphic characters as-is (default  
  60. unless program is 'ls' and output is a terminal)  
  61. -Q, --quote-name enclose entry names in double quotes  
  62. --quoting-style=WORD use quoting style WORD for entry names:  
  63. literal, locale, shell, shell-always, c, escape  
  64. -r, --reverse 逆序排列  
  65. -R, --recursive 递归显示子目录  
  66. -s, --size 以块数形式显示每个文件分配的尺寸  
  67. -S 根据文件大小排序  
  68. --sort=WORD 以下是可选用的WORD 和它们代表的相应选项:  
  69. extension -X status -c  
  70. none -U time -t  
  71. size -S atime -u  
  72. time -t access -u  
  73. version -v use -u  
  74. --time=WORD 和-l 同时使用时显示WORD 所代表的时间而非修改时  
  75. 间:atime、access、use、ctime 或status;加上  
  76. --sort=time 选项时会以指定时间作为排序关键字  
  77. --time-style=STYLE with -l, show times using style STYLE:  
  78. full-iso, long-iso, iso, locale, +FORMAT.  
  79. FORMAT is interpreted like 'date'; if FORMAT is  
  80. FORMAT1<newline>FORMAT2, FORMAT1 applies to  
  81. non-recent files and FORMAT2 to recent files;  
  82. if STYLE is prefixed with 'posix-', STYLE  
  83. takes effect only outside the POSIX locale  
  84. -t sort by modification time, newest first  
  85. -T, --tabsize=COLS assume tab stops at each COLS instead of 8  
  86. -u 同-lt 一起使用:按照访问时间排序并显示  
  87. 同-l一起使用:显示访问时间并按文件名排序  
  88. 其他:按照访问时间排序  
  89. -U 不进行排序;按照目录顺序列出项目  
  90. -v 在文本中进行数字(版本)的自然排序  
  91. -w, --width=COLS 自行指定萤幕宽度而不使用目前的数值  
  92. -x 逐行列出项目而不是逐栏列出  
  93. -X 根据扩展名排序  
  94. -1 每行只列出一个文件  
  95. --help 显示此帮助信息并退出  
  96. --version 显示版本信息并退出  
 
举个例子
列出当前文件夹下的所有文件和目录的详细资料
[plain]  view plain  copy
  1. bixiaopeng@bixiaopeng-To-be-filled-by-O-E-M:~/workspace2/xmrobotium$ ls -lR  
  2. .:  
  3. 总用量 44  
  4. -rw-rw-r-- 1 bixiaopeng bixiaopeng 575 9月 17 19:00 AndroidManifest.xml  
  5. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 bin  
  6. -rw-rw-r-- 1 bixiaopeng bixiaopeng 1268 9月 17 19:00 debug.keystore  
  7. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 gen  
  8. -rw-rw-r-- 1 bixiaopeng bixiaopeng 3571 9月 17 19:00 pom.xml  
  9. -rw-rw-r-- 1 bixiaopeng bixiaopeng 781 9月 17 19:00 proguard-project.txt  
  10. -rw-rw-r-- 1 bixiaopeng bixiaopeng 563 9月 17 19:00 project.properties  
  11. -rw-rw-r-- 1 bixiaopeng bixiaopeng 0 9月 17 18:57 README  
  12. drwxrwxr-x 7 bixiaopeng bixiaopeng 4096 9月 17 19:00 res  
  13. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 src  
  14. drwxrwxr-x 6 bixiaopeng bixiaopeng 4096 9月 17 19:00 target  
  15. -rw-rw-r-- 1 bixiaopeng bixiaopeng 2295 9月 17 19:11 xmrobotium.iml  
  16. ./bin:  
  17. 总用量 8  
  18. -rw-rw-r-- 1 bixiaopeng bixiaopeng 575 9月 17 19:00 AndroidManifest.xml  
  19. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 classes  
  20. ./bin/classes:  
  21. 总用量 4  
  22. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 fm  
  23. ./bin/classes/fm:  
  24. 总用量 4  
  25. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 xiami  
  26. ./bin/classes/fm/xiami:  
  27. 总用量 4  
  28. drwxrwxr-x 3 bixiaopeng bixiaopeng 4096 9月 17 19:00 main  
  29. ./bin/classes/fm/xiami/main:  
  30. 总用量 4  
  31. drwxrwxr-x 2 bixiaopeng bixiaopeng 4096 9月 17 19:00 test  
  32. ./bin/classes/fm/xiami/main/test:  
  33. ...........................
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值