Use pkill -f, which matches the pattern for any part of the command line
pkill -f my_pattern
Related Posts
Change default language – Windows 10 Bash
sudo apt-get install language-pack-en language-pack-en-base manpages sudo update-locale LANG=en_US.UTF8
Find and delete files older than 1 week (example)
find /home/users/backup_MyDB -type f -mtime +7 -exec rm {} + Although generally it is wise…
