what does "kill -9" and "kill -1" do
Answers were Sorted based on User's Feedback
Answer / jitesh varshney
Kill -9
===> send sure kill signal to process..
but, remember it can't kill all processes
eg: init process
run : kill -9 1 [it can't effect]
Kill -1
===> send signal hangup to process..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / supreetha
kill -9
--> sends termination signal to the process
| Is This Answer Correct ? | 6 Yes | 1 No |
How to create environment variables?What are the conditions for creating variables?
shell script for reverse the string
What are the types of script?
How to take input values from the user?
Give some situations where typing error can destroy a program?
How to include comments in your shell scripts?
How to check if a directory exists?
How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?"
How will I insert a line "abcdef" at every 100th line of a file?
How do I open the shell in cmd?
How to open a read-only file in the shell?
What does $0 mean in shell script?