How to stop Grunt

gruntjs, node.js, windows-7

Solution

If it's a task that you currently running you can stop it with `ctrl + c`

If it's a task that is running in background you can find his process id (pid) with `ps aux | grep grunt` and then kill it with `kill {pid}`

Problem

This question may be obvious to some, but I searched all over the internet and couldn't find the answer. I was following an install guide on Strut. How do I stop the Grunt task? I'm running Windows 7.

Original source