From 79f2dab1cad0d5bac76c4a62eda9eb46f04b82aff32bf41f6c601be8213904d4 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 18 Apr 2025 10:58:19 +0300 Subject: [PATCH] Place positional parameters first --- schemas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas b/schemas index e7b24b7..6289292 100755 --- a/schemas +++ b/schemas @@ -1,6 +1,6 @@ #!/bin/sh -e -for i in $(find . -name "*.rec" -maxdepth 1 | sort -n) ; do +for i in $(find . -maxdepth 1 -name "*.rec" | sort -n) ; do cat $i echo done -- 2.51.0