mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 10:58:28 +00:00
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
podman image list --format "{{.ID}} {{.Repository}} {{.Tag}}" \
|
||
|
| fzf --multi --prompt "Choose images to remove > " \
|
||
|
| awk '{print $1}' \
|
||
|
| xargs podman image rm
|