filed
Job queue using FUSE
git clone git://mccd.space/filedcommit fd35186cb6a7498766faaba5ed2d949aa28e5f8c
parent 10b179d637583b1ed7b3f7b016ed6163e663fd65
Author: Marc Coquand <marc@coquand.email>
Date: Sun, 14 Dec 2025 20:07:21 +0100
Docs
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -44,7 +44,7 @@ $ qj /tmp/qj-jobs /tmp/qj-state.db
In terminal two, create a basic job:
```
-$ printf "echo 'Running job'" >> /tmp/qj-jobs/pending/1
+$ printf "echo 'hello world'" > /tmp/qj-jobs/pending/1
```
If all went well, you can see the job output:
diff --git a/qj.1.scd b/qj.1.scd
@@ -50,7 +50,7 @@ Create a new job with $JOBID that echoes hello world:
$ JOBID="$(cat /var/qj/new-id)"
- $ printf "echo helloworld" >> "/var/qj/pending/$JOBID"
+ $ printf "echo helloworld" > "/var/qj/pending/$JOBID"
Retry a failing job titled `E6Xe`: