From ae57d3e38ff13c1265d307ce0228431c18a0a93c Mon Sep 17 00:00:00 2001 From: Jason Nagin <33561705+JasonN3@users.noreply.github.com> Date: Tue, 9 Jul 2024 09:57:30 -0400 Subject: [PATCH] reverse command --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index face54f..13abb49 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,2 +1,2 @@ docs: - while read -r line; do echo "\"${line}\""; done < <(find -name '*.md') \ No newline at end of file + find -name '*.md' | while read -r line; do echo "\"$${line}\""; done \ No newline at end of file