From: Sergey Matveev Date: Fri, 18 Apr 2025 07:58:19 +0000 (+0300) Subject: Place positional parameters first X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=79f2dab1cad0d5bac76c4a62eda9eb46f04b82aff32bf41f6c601be8213904d4;p=schwabrak.git Place positional parameters first --- 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