TR.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

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