5 lines
163 B
Bash
5 lines
163 B
Bash
|
#! /bin/bash
|
||
|
[ -x "$(which docker 2>/dev/null)" ] && DOCKER=docker
|
||
|
[ -x "$(which podman 2>/dev/null)" ] && DOCKER=podman
|
||
|
$DOCKER exec bind9 named-compilezone "$@"
|