Re: [PATCH 1/3] t5334: expose shared `nth_line()` helper
Patrick Steinhardt <[email protected]>
| Newsgroups | org.kernel.vger.git |
|---|---|
| Message-ID | <[email protected]> |
On Fri, Jun 12, 2026 at 04:07:08PM -0400, Taylor Blau wrote:
> diff --git a/t/lib-midx.sh b/t/lib-midx.sh
> index e38c609604c..b522dbdb0f4 100644
> --- a/t/lib-midx.sh
> +++ b/t/lib-midx.sh
> @@ -34,3 +34,9 @@ compare_results_with_midx () {
> midx_git_two_modes "cat-file --batch-all-objects --batch-check --unordered" sorted
> '
> }
> +
> +nth_line() {
> + local n="$1"
> + shift
> + awk "NR==$n" "$@"
> +}
It feels a bit weird to have such a general function in "lib-midx.sh",
but so be it.
Patrick