LS.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. .TH LS 1
  2. .SH NAME
  3. ls - list the contents of a directory
  4. .SH SYNOPSIS
  5. fBlsfP [fB-acdfgilqrstu1ACFLMRTXfP] [fInamefP...]
  6. .SH DESCRIPTION
  7. For each file argument, list it.  For each directory argument, list its
  8. contents.  The current working directory is listed when no files are named.
  9. Information is printed multicolumn on terminals, single column if the output
  10. is redirected.  The options control what information is shown and how.
  11. .PP
  12. .B Ls
  13. has two sources other then the commands line to draw options from, one is
  14. the environment variable
  15. .B LSOPTS
  16. and is used only when the output of
  17. .B ls
  18. is displayed on a terminal.  The other is the name of
  19. .B ls
  20. itself.  If
  21. .B ls
  22. is linked to another name, then all the characters after the l are used as
  23. flags too, except that f, r, t and x are translated to F, R, T and X.  Useful
  24. links are
  25. .BR ll ,
  26. .BR lf ,
  27. .B lm
  28. and
  29. .BR lx .
  30. .PP
  31. Files whose names start with a dot are by default not listed.
  32. .PP
  33. Note that standard Minix doesn't have symbolic links or sockets and
  34. .B -u
  35. and
  36. .B -c
  37. are no-ops on a V1 file system, since only modified times are stored in V1
  38. inodes.
  39. .SH OPTIONS
  40. .TP
  41. .B -a
  42. All entries are listed, even
  43. .B .
  44. and
  45. .B ..
  46. .TP
  47. .B -c
  48. Use inode changed time for sorting, listing or searching.
  49. .TP
  50. .B -d
  51. Do not list contents of directories, but list the directory itself.
  52. .TP
  53. .B -f
  54. Do not sort (should also be: treat a file as a directory, but that
  55. can't be implemented portably).
  56. .TP
  57. .B -g
  58. Suppress the owner name on a long listing (implies
  59. .BR -l ).
  60. .TP
  61. .B -i
  62. I-node number printed in first column.
  63. .TP
  64. .B -l
  65. Long listing: mode, links, owner, group, size and time.
  66. .RB ( "ls -lC"
  67. uses columns in a wide enough window!)
  68. .TP
  69. .B -n
  70. Print numerical user and group id's.
  71. .TP
  72. .B -q
  73. Print nongraphic characters as 'fB?fP' (default on terminals).
  74. .TP
  75. .B -r
  76. Reverse the sort order.
  77. .TP
  78. .B -s
  79. Give size in kilobytes.
  80. .TP
  81. .B -t
  82. Sort by time (modified time default), latest first.
  83. .TP
  84. .B -u
  85. Use last accessed time for sorting, listing or searching.
  86. .TP
  87. .B -1
  88. Print in one column.
  89. .TP
  90. .B -A
  91. List all entries, but not
  92. .B .
  93. and
  94. .B ..
  95. (This is the default for privileged users.)
  96. .TP
  97. .B -C
  98. Print multicolumn (default on terminals).
  99. .TP
  100. .B -F
  101. Mark directories with a 'fB/fP', executables with a 'fB*fP', s-2UNIXs+2
  102. domain sockets with a 'fB=fP' and symbolic links with a 'fB@fP' behind
  103. the name.
  104. .TP
  105. .B -L
  106. Print the file referenced by a symbolic link instead of the link.
  107. .TP
  108. .B -M
  109. List mode before name (implies
  110. .BR -C ).
  111. .TP
  112. .B -R
  113. List directory trees recursively.
  114. .TP
  115. .B -T
  116. Group files by type, i.e. regular files together, directories
  117. together, etc.
  118. .TP
  119. .B -X
  120. Print crunched mode and size before name (implies
  121. .BR -C ).
  122. Only the rwx permissions that its caller has on the file, but they are in
  123. upper case if the caller owns the file and has given the permission to the
  124. callers group or other users.  The size is listed in bytes (<= 5K), or rounded
  125. up kilo, mega or gigabytes.
  126. .SH "SEE ALSO"
  127. .BR du (1),
  128. .BR stat (1),
  129. .BR stat (2).
  130. .SH BUGS
  131. Having to type
  132. .B ls -C
  133. when viewing files through
  134. .BR more (1).
  135. .PP
  136. Is only portable to systems with the same st_mode (see
  137. .BR stat (2)).
  138. .PP
  139. The
  140. .B LSOPTS
  141. variable and the
  142. .BR -M ,
  143. .B -T
  144. and
  145. .B -X
  146. flags are not found on other
  147. .B ls
  148. implementations.  (They have there own nonstandard flags.)
  149. .SH AUTHOR
  150. Kees J. Bot (kjb@cs.vu.nl)