mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
9 lines
144 B
Bash
Executable File
9 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir="${1}"
|
|
pattern="${2}"
|
|
|
|
cd "${dir}" || exit 1
|
|
|
|
find . -mindepth 1 -maxdepth 1 -type f -name "${pattern}" -printf '%P\n' | sort -V
|