#!/usr/bin/env sh
# SPDX-License-Identifier: MIT
# ──────────────────────────────────────────────────────────────────────────────
# $source: cappysan-dotfile-scripts$
# ──────────────────────────────────────────────────────────────────────────────
#
# NAME
#      git-find - find a file in the repository
#
# SEE ALSO
#      git(1)
#
exec git ls-files . | grep "${@}"
