mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-02-07 12:19:31 +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
|