home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / sosutl12.zip / doc / kill.man < prev    next >
Text File  |  1993-09-23  |  1KB  |  56 lines

  1. kill
  2.  
  3. Description
  4.  
  5.     kill--kill processes by their process ID's (PID).
  6.  
  7. Usage
  8.  
  9.     [D:\] kill PID [ ... ]
  10.  
  11.     The arguments are given in decimals.
  12.  
  13. System requirements
  14.  
  15.     `kill' is a Perl program and requires you to have Perl installed.
  16.     Perl is a programming language which originally was designed for
  17.     UNIX (how else) but is now ported for many other operating systems.
  18.     Perl should be find by anonymous FTP'ing to one of the following
  19.     places:
  20.  
  21.         hobbes.nmsu.edu
  22.         ftp.cdrom.com
  23.         ftp.luth.se
  24.         ftp.informatik.tu-muenchen.de
  25.         ftp.urz.uni-heidelberg.de
  26.  
  27.     and possibly many others. Try directories like
  28.  
  29.         .../os2/2_x/programming                or
  30.         .../os2/2_x/unix/programming
  31.  
  32.     and search for files starting `perl'.
  33.  
  34. Notes
  35.  
  36.     If you are using an aliasing shell like 4OS2, this script should be
  37.     easy to convert to an alias. For example, when using 4OS2, put the
  38.     line
  39.  
  40.         KILL=perl -e "kill(9, %$);"
  41.  
  42.     in your alias file, or type
  43.  
  44.         [D:\] alias kill=`perl -e "kill(9, %$);"`
  45.  
  46.     at the command line.
  47.  
  48.     I haven't yet figured out how command line can be passed to sh
  49.     (ms_sh 2.1C). The easiest solution (using `$*') doesn't seem to
  50.     work.
  51.  
  52. Version
  53.  
  54.     kill v1.0
  55.     Copyright (C) SuperOscar Softwares, Tommi Nieminen 1993
  56.