URI: 
       tProvide better explanations in the README - wendy - watch files/directories and run commands on any event
  HTML git clone git://z3bra.org/wendy
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 5d2f4dcb32981d7ff60a82b5b192ad53b2c7cc40
   DIR parent 957c69dd673f38ee1a3504319d30383e8034294e
  HTML Author: Willy Goiffon <dev@z3bra.org>
       Date:   Tue,  2 Jun 2020 10:06:51 +0200
       
       Provide better explanations in the README
       
       Diffstat:
         M README                              |      18 ++++++++++--------
       
       1 file changed, 10 insertions(+), 8 deletions(-)
       ---
   DIR diff --git a/README b/README
       t@@ -18,17 +18,19 @@ Usage
        Refer to wendy(1) manual page for details and examples.
        The below commands are provided as a quick introduction.
        
       -These commands will helps you recompile a project, preview the manual
       -page and upload it to a remote location (each running in a separate
       -terminal):
       +Recompile a project when a source file changes:
        
                ls *.[ch] | wendy make
       -        wendy -w manual.1 sh -c 'clear;PAGER=cat man ./$WENDY_INODE'
       -        wendy -rd -m 394 -w . rsync -av . remote:/dest
        
       -Note: the numerical value "394" is a combination of event: MODIFY,
       -CLOSE_WRITE, MOVED_TO, CREATE. See `MASKS` in wendy(1) for all supported
       -events and their numeric values.
       +Dynamic preview of a manual page (note the use of simple quotes):
       +
       +        export MANPAGER=/bin/cat
       +        wendy -w manual.1 sh -c 'clear; man ./$WENDY_INODE'
       +
       +Synchronize the local directory with a remote one. The value `394`
       +is a sum of events: `MODIFY, CLOSE_WRITE, MOVED_TO, CREATE`:
       +
       +        wendy -rd -m 394 -w . rsync -av . remote:/dest
        
        Installation
        -----