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

操作系统开发

开发平台:

WINDOWS

  1. BASENAME(1)               Minix Programmer's Manual                BASENAME(1)
  2. NAME
  3.      basename, dirname - strip off file prefixes and suffixes
  4. SYNOPSIS
  5.      basename file [suffix]
  6.      dirname file
  7. OPTIONS
  8.      (none)
  9. EXAMPLES
  10.      basename /user/ast/file.c
  11.                          # Strips path to yield file.c
  12.      basename /user/file.c .c
  13.                          # Strips path and .c to yield file
  14.      dirname /user/file.c
  15.                          # Strips basename to yield /user
  16. DESCRIPTION
  17.      Basename removes the initial directory names (if any) yielding  the  name
  18.      of  the  file itself.  If a second argument is present, it is interpreted
  19.      as a suffix and is also stripped, if present.
  20.      Dirname removes the final component of a path, yielding the  directory  a
  21.      file is in.
  22.      These programs are primarily used in shell scripts.
  23.                                                                              1