4 lines
125 B
Bash
4 lines
125 B
Bash
|
#! /bin/bash
|
||
|
[ -x "$(which docker)" ] && DOCKER=docker
|
||
|
[ -x "$(which podman)" ] && DOCKER=podman
|
||
|
$DOCKER exec bind9 rndc "$@"
|