0

I have written a script file for stopping of process. But there is need to write script file without using kill cmd.
Is there any alternate cmd for kill cmd in Linux?

whoan
  • 8,143
  • 4
  • 39
  • 48
hAcky
  • 37
  • 1
  • 10
  • I worked with a guy who used the REBOOT button on a VAX 5500 multiuser system for that purpose. It made the rest of the users upset but got the job done. – user3344003 Oct 23 '15 at 14:43
  • Can you elaborate on why you cannot use the `kill` command? – Joel C Oct 23 '15 at 15:45
  • Actually my kill script is not killing instances on the cloud DB.So much instances created there and kill cmd is not killing the sessions.So i thought of something else to use. – hAcky Oct 26 '15 at 05:09

1 Answers1

0

you can look at pkill command:

http://linux.about.com/library/cmd/blcmdl1_pkill.htm

Yaroslav Boichuk
  • 1,763
  • 20
  • 31