Skip to content

Instantly share code, notes, and snippets.

View mbrksntrk's full-sized avatar
💻
Coding!

M Burak Şentürk mbrksntrk

💻
Coding!
View GitHub Profile
@evanscottgray
evanscottgray / docker_kill.sh
Last active November 7, 2023 03:40
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt