Hi all...
Is it possible to kill any process in linux with just kill command without any options like -15 or -9...
I mean
I know below commands work just fine
Code:
kill -15 PID # is for gracefull kill
kill -9 PID # is for forcefull kill
Thanks in advance...