DEV Community

Zhangwuji
Zhangwuji

Posted on • Updated on

study linux command

ps aux 
Enter fullscreen mode Exit fullscreen mode

list all process;

ps aux | grep "node index.js"
Enter fullscreen mode Exit fullscreen mode

| take the result output to some place
grep "node index.js" filter the result

rm -r ll
Enter fullscreen mode Exit fullscreen mode

delete recursively file

Top comments (0)