filed

Job queue using FUSE

git clone git://mccd.space/filed

commit 3990951da168f076aef16a30f7b600b91f8e8188
parent 909d125bfc0af8ab7d78d480348076bc3d039b80
Author: Marc Coquand <marc@coquand.email>
Date:   Thu, 18 Dec 2025 15:41:27 +0100

docs

Diffstat:
Mfiled.5.scd | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/filed.5.scd b/filed.5.scd
@@ -21,21 +21,21 @@ accesses.
 
 Underneath _mdir_, there are the following groups of files and subdirectories:
 
-_mdir_/pending/[a-z]\*  
+_mdir_/pending/\*  
 	Jobs to be run. To create a new job, create a file here with
 	the command to run. The filename is the ID, and the content is
 	the command that will be executed with sh.
 
-_mdir_/active/[a-z]\* 
+_mdir_/active/\* 
 	Currently running jobs. It is possible to access logs of
 	the running jobs by inspecting the files. It is also possible to 
 	remove an active job, which will kill the process.
 
-_mdir_/failed/[a-z]\* 
+_mdir_/failed/\* 
 	Jobs that exceeded retry count. You can retry a job by
 	moving them back to pending. You can also safely remove jobs here.
 
-_mdir_/complete/[a-z]\* 
+_mdir_/complete/\* 
 	Jobs that succeeded, with content being the job	output. Jobs
 	here can safely be removed.