Tuer le terminal de Cron Process Ubuntu

0

First of all check the working process with this command.

ps -o pid,sess,cmd afx | egrep "( |/)cron( -f)?$"
This command's output is

599  599 cron
4288  599 \_ CRON
and now kill the process with this command

pkill -s 4288
Energetic Echidna