Linux Commands: Stop a process from running


kill-Linux Command

kill

Stop a process from running, either via a signal or forced termination.

SYNTAX
      kill [-s sigspec] [-n signum] [-sigspec] jobspec or pid
      kill -l [exit_status]

key
   -l  :  List the signal names
   -s  :  Send a specific signal
   -n  :  Send a specific signal number

Send a signal specified by sigspec or signum to the process named by job specification jobspec or process ID pid.

sigspec
is either a signal name such as SIGINT (with or without the SIG prefix) or a signal number; signum is a signal number.

If sigspec and signum are not present, SIGTERM is used (Terminate).

If any arguments are supplied when `-l' is given, the names of the signals corresponding to the arguments are listed, and the return status is zero. exit_status is a number specifying a signal number or the exit status of a process terminated by a signal.

The return status is zero if at least one signal was successfully sent, or non-zero if an error occurs or an invalid option is encountered.

List the running process
$ ps
PID TTY TIME CMD
1293 pts/5 00:00:00 MyProgram

Then Kill it
$ kill 1293
[2]+ Terminated MyProgram

To run a command and then kill it after 5 seconds:

   my_command & sleep 5 
   kill -0 $! && kill $!



Related commands:

ps - List running processes (returns PID)
jobs - List your own processes (returns Job No.)
bg - Put a process in the background
fg- Put a process in the foreground
wait -
disown -
suspend -

Other Linux Commands:
alias , break , builtin , cal , case , cat , cd , cfdisk , chgrp , chmod , chown , chroot , cksum , cmp , comm , command , continue , cp , cron , crontab , csplit , cut , date , dc , dd , declare , df , diff , diff3 , dir , dircolors , dirname , dirs , du , echo , egrep , enable , env , eval , exec , expand , export , expr , factor , false , fdformat , fdisk , fgrep , find , fmt , fold , for , fsck , function , getopts , hash , hashcharacter , head , history , hostname , id , if , import , install , join , kill , less , let , ln , local , locate , logname , logout , lpc , lpr , lprm , ls , m4 , man , mbadblocks , mkdir , mkfifo , mknod , more , mount , mtools , mv , nice , nl , nohup , passwd , paste , period , popd , pr , printf , ps , pushd , pwd , quota , quotacheck , quotactl , ram , rcp , read , readonly , return , rm , rmdir , rsync , sdiff , sed , select , seq , set , shift , shopt , shutdown , sleep , sort , split , su , sum , symlink , sync , tac , tail , tar , tee , test , time , times , top , touch , tr , traceroute , true , tsort , tty , type , ulimit , umask , uname , unexpand , uniq , units , unset , unshar , until , useradd , usermod , users , uuencode , watch , wc , whereis , which , while , who , xargs , yes ,
Live2Support.com :
Product - Benefits - Features - How Does it Works - Pricing - SSL Certificates - Signup - Contactus - Login - Submit Resources