Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better use of available tools #21789

Open
eric-nieuwland opened this issue Jan 11, 2025 · 0 comments
Open

Better use of available tools #21789

eric-nieuwland opened this issue Jan 11, 2025 · 0 comments

Comments

@eric-nieuwland
Copy link

In the instructions you use the following to kill remaining Docker processes

ps aux | grep docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null

Of course it does the job, but imho you should use awk to its potential as in

ps aux | awk '/docker/ {print "kill -9", $2}' | sudo -i 2>/dev/null

Fewer processes, no xargs as root.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant