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

操作系统开发

开发平台:

WINDOWS

  1. STTY(1)                   Minix Programmer's Manual                    STTY(1)
  2. NAME
  3.      stty - set terminal parameters
  4. SYNOPSIS
  5.      stty [-ag]
  6.      stty encoded-form
  7.      stty speed ispeed speed ospeed speed cs5 cs6 cs7 cs8 [-]parenb  [-]parodd
  8.          [-]hupcl  [-]cstopb  [-]cread [-]clocal [-]ignbrk [-]brkint [-]ignpar
  9.          [-]parmrk  [-]inpck  [-]istrip  [-]inlcr  [-]igncr  [-]icrnl  [-]ixon
  10.          [-]ixoff   [-]ixany  [-]opost  [-]onlcr  [-]xtabs  [-]onoeot  [-]isig
  11.          [-]icanon [-]iexten [-]echo  [-]echoe  [-]echok  [-]echonl  [-]noflsh
  12.          [-]lflusho  eof=c  eol=c  erase=c erase=c intr=c kill=c quit=c susp=c
  13.          start=c stop=c rprnt=c lnext=c flush=c min=n time=n  rows  n  cols  n
  14.          cooked raw [-]evenp [-]parity [-]oddp [-]nl ek sane
  15. DESCRIPTION
  16.      Stty shows or  changes  the  parameters  of  the  terminal  connected  to
  17.      standard  input.   Stty  takes  a  myriad  of arguments most of which are
  18.      mapped directly to the flags and special characters described in  tty(4),
  19.      so we won't describe them here.
  20.      Stty has three forms of operation.  First,  without  any  arguments  stty
  21.      shows  all terminal attributes that are different from the default state.
  22.      Option -a makes stty print all terminal  attributes,  and  -g  lets  stty
  23.      print  the  attributes  in  a special encoded form, a simple row of colon
  24.      separated hexadecimal numbers.
  25.      In the second form of operation stty takes an encoded form as produced by
  26.      the -g option and sets the terminals attributes to its decoded value.
  27.      In the third form stty  interprets  a  series  of  flags  and  parameters
  28.      settings  and modifies the terminal attributes accordingly.  Flags can be
  29.      given as icanon or -icanon for instance, either setting or  clearing  the
  30.      ICANON  flag.   Special  character  values  can  by  set like intr=^C for
  31.      example, which sets the interrupt character to CTRL-C.   You  can  either
  32.      use  a real CTRL-C, or the two characters `^' and `C'.  In any case it is
  33.      probably necessary to use quotes to guard it from the shell:  intr='^C'.
  34.      A number alone is interpreted as a baud rate setting for both  the  input
  35.      and output rate.  The input or the output rate can be set separately with
  36.      use of the ispeed and ospeed prefixes to the number.  The character  size
  37.      can be set with cs5, cs6, cs7 or cs8.
  38.      The MIN and TIME value, and the number of rows and columns of the  window
  39.      can  also  be  set  using  one  of  the keywords min, time, rows or cols,
  40.      followed by a decimal number that is the value of the setting.
  41.                                                                              1
  42. STTY(1)                   Minix Programmer's Manual                    STTY(1)
  43.      Stty accepts several keywords that are not named by  corresponding  flags
  44.      or parameters in tty(4).  They set several attributes at once:
  45.      cooked
  46.           Same as icrnl ixon opost onlcr isig icanon iexten echo, setting  all
  47.           the attributes that are needed for line oriented mode.
  48.      raw  Same as -icrnl -ixon -opost  -onlcr  -isig  -icanon  -iexten  -echo,
  49.           setting all the attributes for a raw data channel.
  50.      evenp parity
  51.           These synonyms are equal to cs7 parenb -parodd, setting the line  to
  52.           7 bits even parity.
  53.      oddp Same as cs7 parenb parodd, setting the line to 7 bits odd parity.
  54.      -parity -evenp -oddp
  55.           All synonyms for cs8 -parenb, setting the line to 8 bits, no parity.
  56.      nl   Same  as  icrnl,  setting  carriage  return  to  line   feed   input
  57.           translation.
  58.      -nl  Same as -icrnl -inlcr -igncr, disabling any carriage return or  line
  59.           feed handling.
  60.      ek   Set the ERASE and KILL special characters back to the default.
  61.      sane Set all attributes to the default except things like the line  speed
  62.           and  parity, because their "sane" value is probably what it is right
  63.           now.  The default values are compiled into stty from the <termios.h>
  64.           include file.  Use stty sane; stty -a to know what they are.
  65. FILES
  66.      /etc/ttytab    The init field of this file may contain an stty command to
  67.                     set  the attributes to match an attached RS232 terminal or
  68.                     modem.
  69. SEE ALSO
  70.      tty(4), ttytab(5).
  71. NOTES
  72.      The cooked, raw, rows and cols keywords are Minix  additions  beyond  the
  73.      keywords  defined  by  POSIX.   Rows and cols are common UNIX extensions,
  74.      however.  There are more  Minix  specific  flags  that  match  the  Minix
  75.      specific attributes described in tty(4).
  76.                                                                              2
  77. STTY(1)                   Minix Programmer's Manual                    STTY(1)
  78. AUTHOR
  79.      Kees J. Bot (kjb@cs.vu.nl)
  80.                                                                              3