aboutsummaryrefslogtreecommitdiff
path: root/bin/jfcd
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-26 12:13:03 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-26 12:50:25 +1200
commitcde1926a3c65830bceed5e8e76cd94e81b19386c (patch)
tree5abe782d2c9567f3d7c3affa8fc077fb3d5d5e5c /bin/jfcd
parentAdd notifications to dmp(1) (diff)
downloaddotfiles-cde1926a3c65830bceed5e8e76cd94e81b19386c.tar.gz
dotfiles-cde1926a3c65830bceed5e8e76cd94e81b19386c.zip
Put dotfiles manuals into their own section
This probably contains a few mistakes
Diffstat (limited to 'bin/jfcd')
-rwxr-xr-xbin/jfcd4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/jfcd b/bin/jfcd
index b5fff5a1..8bd54e3b 100755
--- a/bin/jfcd
+++ b/bin/jfcd
@@ -1,6 +1,6 @@
#!/bin/sh
-# Watch a directory for changes and commit them with jfc(1) if there are any;
+# Watch a directory for changes and commit them with jfc(1d) if there are any;
# requires inotifywait(1)
self=jfcd
@@ -18,6 +18,6 @@ inw() {
# Directory to check is first and only argument; defaults to current directory
cd -- "${1:-.}" || exit
-# Run a while loop over inotifywait(1) calls, running jfc(1) on the working
+# Run a while loop over inotifywait(1) calls, running jfc(1d) on the working
# directory
while inw ; do jfc ; done