Skip to main content

Sort the filenames before calling cog

ID
f1328a7
date
2023-12-26 22:26:28+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
0185c13
message
Sort the filenames before calling `cog`
changed files
1 file, 1 addition, 1 deletion

Changed files

recog (327) → recog (334)

diff --git a/recog b/recog
index 30783f1..65096e0 100755
--- a/recog
+++ b/recog
@@ -9,4 +9,4 @@
 set -o errexit
 set -o nounset
 
-find . -name README.md | xargs cog -c -r
+find . -name README.md | sort | xargs cog -c -r