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

操作系统开发

开发平台:

WINDOWS

  1. TR(1)                     Minix Programmer's Manual                      TR(1)
  2. NAME
  3.      tr - translate character codes
  4. SYNOPSIS
  5.      tr [-cds] [string1] [string2]
  6. OPTIONS
  7.      -c   Complement the set of characters in string1
  8.      -d   Delete all characters specified in string1
  9.      -s   Squeeze all runs of characters in string1 to one character
  10. EXAMPLES
  11.      tr '[A-Z]' '[a-z]' <x >y
  12.                          # Convert upper case to lower case
  13.      tr -d '0123456789' <f1 >f2
  14.                          # Delete all digits from f1
  15. DESCRIPTION
  16.      Tr performs simple character translation.  When  no  flag  is  specified,
  17.      each  character  in string1 is mapped onto the corresponding character in
  18.      string2 .
  19.                                                                              1