6 lines
91 B
Bash
6 lines
91 B
Bash
#!/bin/bash
|
|
|
|
if (command -v podman &>/dev/null); then
|
|
source <(podman completion bash)
|
|
fi
|