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

操作系统开发

开发平台:

WINDOWS

  1. ASCII(1)                  Minix Programmer's Manual                   ASCII(1)
  2. NAME
  3.      ascii - strip all the pure ASCII lines from a file
  4. SYNOPSIS
  5.      ascii [-n] [file]
  6. OPTIONS
  7.      -n   Extract the lines containing nonASCII characters
  8. EXAMPLES
  9.      ascii file >outf    # Write all the ASCII lines on outf
  10.      ascii -n <file >outf
  11.                          # Write all the nonASCII lines on outf
  12. DESCRIPTION
  13.      Sometimes a file contains some nonASCII characters that are in  the  way.
  14.      This  program  allows  the  lines  containing only ASCII characters to be
  15.      grepped from the file. With the -n flag, the nonASCII lines are  grepped.
  16.      No  matter  whether  the flag is used or not, the program returns an exit
  17.      status of true if the file is pure ASCII, and false otherwise.
  18. SEE ALSO
  19.      tr(1).
  20.                                                                              1