Skip to content

Instantly share code, notes, and snippets.

@weblogix
Created September 3, 2020 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weblogix/614a435ce83941bba22a11bbf9e048e5 to your computer and use it in GitHub Desktop.
Save weblogix/614a435ce83941bba22a11bbf9e048e5 to your computer and use it in GitHub Desktop.
[webpack] cheatsheeet

View all webpack processes

ps aux | grep webpack

Kill a single webepack process

kill -9 <process id>

Kill all webpack processes

kill $(ps aux | grep 'webpack' | awk '{print $2}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment