LS.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:4k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. LS(1)                     Minix Programmer's Manual                      LS(1)
  2. NAME
  3.      ls - list the contents of a directory
  4. SYNOPSIS
  5.      ls [-acdfgilqrstu1ACFLMRTX] [name...]
  6. 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
  9.      named.  Information is printed multicolumn on terminals, single column if
  10.      the  output is redirected.  The options control what information is shown
  11.      and how.
  12.      Ls has two sources other then the commands line to draw options from, one
  13.      is the environment variable LSOPTS and is used only when the output of ls
  14.      is displayed on a terminal.  The other is the name of ls itself.   If  ls
  15.      is  linked  to another name, then all the characters after the l are used
  16.      as flags too, except that f, r, t and x are translated to F, R, T and  X.
  17.      Useful links are ll, lf, lm and lx.
  18.      Files whose names start with a dot are by default not listed.
  19.      Note that standard Minix doesn't have symbolic links or  sockets  and  -u
  20.      and  -c  are  no-ops  on  a V1 file system, since only modified times are
  21.      stored in V1 inodes.
  22. OPTIONS
  23.      -a   All entries are listed, even . and ..
  24.      -c   Use inode changed time for sorting, listing or searching.
  25.      -d   Do not list contents of directories, but list the directory itself.
  26.      -f   Do not sort (should also be: treat a file as a directory,  but  that
  27.           can't be implemented portably).
  28.      -g   Suppress the owner name on a long listing (implies -l).
  29.      -i   I-node number printed in first column.
  30.      -l   Long listing: mode, links, owner, group, size  and  time.   (ls  -lC
  31.           uses columns in a wide enough window!)
  32.      -n   Print numerical user and group id's.
  33.      -q   Print nongraphic characters as '?' (default on terminals).
  34.                                                                              1
  35. LS(1)                     Minix Programmer's Manual                      LS(1)
  36.      -r   Reverse the sort order.
  37.      -s   Give size in kilobytes.
  38.      -t   Sort by time (modified time default), latest first.
  39.      -u   Use last accessed time for sorting, listing or searching.
  40.      -1   Print in one column.
  41.      -A   List all entries, but  not  .  and  ..  (This  is  the  default  for
  42.           privileged users.)
  43.      -C   Print multicolumn (default on terminals).
  44.      -F   Mark directories with a '/', executables with  a  '*',  UNIX  domain
  45.           sockets with a '=' and symbolic links with a '@' behind the name.
  46.      -L   Print the file referenced by a symbolic link instead of the link.
  47.      -M   List mode before name (implies -C).
  48.      -R   List directory trees recursively.
  49.      -T   Group files  by  type,  i.e.  regular  files  together,  directories
  50.           together, etc.
  51.      -X   Print crunched mode and size before name (implies -C).  Only the rwx
  52.           permissions  that  its caller has on the file, but they are in upper
  53.           case if the caller owns the file and has given the permission to the
  54.           callers  group or other users.  The size is listed in bytes (<= 5K),
  55.           or rounded up kilo, mega or gigabytes.
  56. SEE ALSO
  57.      du(1), stat(1), stat(2).
  58. BUGS
  59.      Having to type ls -C when viewing files through more(1).
  60.      Is only portable to systems with the same st_mode (see stat(2)).
  61.      The LSOPTS variable and the -M, -T and -X flags are not found on other ls
  62.      implementations.  (They have there own nonstandard flags.)
  63. AUTHOR
  64.      Kees J. Bot (kjb@cs.vu.nl)
  65.                                                                              2