~dricottone/my-utils

ref: 598fcd5f3c9242b5f38809c982c7ca9045c33857 my-utils/src/docker-clean -rwxr-xr-x 117 bytes
598fcd5fDominic Ricottone Added wg*, fw*, docker*, android*, pactl*, vimsplit; Update to enumerate 3 years ago
                                                                                
1
2
3
4
5
6
#!/bin/sh
for id in $(docker ps --all --quiet); do
  docker rm "$id" --force
done
docker system prune --all --force