proc-cli
proc is a command-line tool for developers who are tired of arcane incantations for simple process tasks.
Contributors
proc-cli is all of us
Our contributors 1
Thank you for supporting proc-cli.
About
What is proc?
proc is a command-line tool for developers who are tired of arcane incantations for simple process tasks.
Why proc?
Every developer knows this pain:
# What's on port 3000?
lsof -i :3000 | grep LISTEN | awk '{print $2}'
# Kill it
lsof -i :3000 | grep LISTEN | awk '{print $2}' | xargs kill -9
# Find all node processes
ps aux | grep node | grep -v grep
With proc:
# What's on port 3000?
proc on :3000
# Kill it
proc kill :3000
# Find all node processes
proc find node
Where to get it?
Get it from the open source Github repository "yazeed/proc".
Our team
Yazeed
Admin