agendafs
A filesystem for your calendar.
git clone git://mccd.space/agendafscommit d8f3dc0fdb2149e8bf3a74bb85e0348956252ce7
parent 36cda2751f1d22e9db45e3753a688a82ae5ecbea
Author: Marc Coquand <marc@coquand.email>
Date: Fri, 11 Jul 2025 10:28:14 +0200
Simplify
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -137,7 +137,7 @@ find_by_category() {
return 1
fi
- find . -type f | while IFS= read -r file; do
+ find . -type f | while read -r file; do
fullpath=$(realpath "$file")
value=$(getfattr --only-values -n user.categories -- "$file" 2>/dev/null)
case $value in