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