mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-02-07 12:19:31 +00:00
6 lines
195 B
Bash
Executable File
6 lines
195 B
Bash
Executable File
#!/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
|