diff options
author | Leon Rische <leon.rische@me.com> | 2020-05-25 00:20:30 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2020-05-25 00:21:54 +0200 |
commit | 76080c6b670d8dd81fa4faffe7840e63f2d95ebd (patch) | |
tree | 9036bf5bdb3801c6e8c82e09488199ac3287590c /org-fc.el | |
parent | aacd42cb9fcdf57c947ec97af22c4e838d99dd01 (diff) |
Document `-L` option of find command
Diffstat (limited to 'org-fc.el')
-rw-r--r-- | org-fc.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 " "))) |