2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00
kea/scripts/grabber.sh

9 lines
144 B
Bash
Raw Normal View History

#!/bin/sh
dir="${1}"
pattern="${2}"
cd "${dir}" || exit 1
find . -mindepth 1 -maxdepth 1 -type f -name "${pattern}" -printf '%P\n' | sort -V