agendafs

A filesystem for your calendar.

git clone git://mccd.space/agendafs
commit 1e638ac89aa3e5df4021860fd84602bbe4c100e8
parent bf1b511a7be881ef14bff881b6d08b2add641a53
Author: Marc Coquand <marc@coquand.email>
Date:   Sun, 27 Jul 2025 12:02:13 +0200

Docs

Diffstat:
Magendafs.8.scd | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/agendafs.8.scd b/agendafs.8.scd
@@ -38,23 +38,23 @@ usage. Supported extended attributes are:
 Mount vdir storage with agendafs to your home journal directory:
 
 	```
-	$ mount.agendafs -o vdir=$HOME/.calendars/vjournal-calendar \
+	$ mount.agendafs -o vdir=$HOME/.calendars/vjournal-calendar \\
 	  $HOME/journal
 	```
 
 Find all files with categories, and their categories:
 
 	```
-	$ find . -type f -exec getfattr -n user.categories {} \
+	$ find . -type f -exec getfattr -n user.categories {} \\
 	  + 2>/dev/null
 	```
 
-Find files by category:
+Find files by category MY_CATEGORY:
 
 	```
-	$ find . -type f -exec getfattr -n user.categories {} + 2>/dev/null \
-	  | grep -B1 "MY_CATEGORY" \
-	  | grep '^# file' \
+	$ find . -type f -exec getfattr -n user.categories {} + 2>/dev/null \\
+	  | grep -B1 "MY_CATEGORY" \\
+	  | grep '^# file' \\
 	  | awk '{ print substr($0, 9) }'
 	```