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