mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 13:57:59 +00:00
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
podman image search --format "{{.Index}} {{.Name}}" alpine \
|
||
|
| fzf --multi --prompt "Choose images to install > " \
|
||
|
| awk '{print $2}' \
|
||
|
| xargs podman image pull
|