summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-05-25 00:20:30 +0200
committerLeon Rische <leon.rische@me.com>2020-05-25 00:21:54 +0200
commit76080c6b670d8dd81fa4faffe7840e63f2d95ebd (patch)
tree9036bf5bdb3801c6e8c82e09488199ac3287590c /org-fc.el
parentaacd42cb9fcdf57c947ec97af22c4e838d99dd01 (diff)
Document `-L` option of find command
Diffstat (limited to 'org-fc.el')
-rw-r--r--org-fc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/org-fc.el b/org-fc.el
index b215816..5e9d573 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1194,7 +1194,8 @@ Checks if the headline is a suspended card first."
(defun org-fc-awk--find (paths)
"Generate shell code to search PATHS for org files.
Matches all .org files ignoring ones with names don't start with
-a '.' to exclude temporary / backup files."
+a '.' to exclude temporary / backup files.
+With the '-L' option, 'find' follows symlinks."
(format
"find -L %s -name \"*.org\" -not -name \".*\" -print0"
(mapconcat 'identity paths " ")))