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 important is shell scripting?
Can we run shell script in windows?
How do I start a shell script?
What does echo $0 do?
What is the significance of the shebang line in shell scripting?
What is egrep?
What is subshell?
write a scwipt that a) takes exactly one argument, a directory name. b) if the number of argument is more or less than one,print a usage message c) if the argument is not adirectory, print another message d) for the given directory, print the five biggest files and the five files that were most recently modified. e) save the output to a file called q2output.
write a program to display all the files from the current directory which are created in particular month
Create a bash shell script that reads in a number from the user. If the number is 1, print out the date. If the number is 2, list the files in the current directory. If the number is 3, print out who is currently logged onto the system. If the number is anything else, print out an error message and exit. Name this script "various.sh"
How do I edit a .sh file?
What does the sh command do?