updated README.md
This commit is contained in:
parent
37f30005dd
commit
c2b788ad50
@ -1,5 +1,6 @@
|
|||||||
What is adhocify?
|
What is adhocify?
|
||||||
=================
|
=================
|
||||||
|
|
||||||
adhocify uses inotify to watch for file system events. Once an event
|
adhocify uses inotify to watch for file system events. Once an event
|
||||||
occurs it can execute a script. The path of the file and the event
|
occurs it can execute a script. The path of the file and the event
|
||||||
will be passed to that script.
|
will be passed to that script.
|
||||||
@ -45,4 +46,8 @@ adhocify -w /tmp -i *.txt /home/user/myscript.sh
|
|||||||
|
|
||||||
* Watches for IN\_CLOSE\_WRITE events in /tmp/ but will not pass *.txt files to the script
|
* Watches for IN\_CLOSE\_WRITE events in /tmp/ but will not pass *.txt files to the script
|
||||||
|
|
||||||
|
find . -type d | adhocify -s /home/user/myscript.sh
|
||||||
|
|
||||||
|
* Starts monitoring every subdirectory of the current path for IN\_CLOSE\_WRITE events. However, inotify has
|
||||||
|
limits, thus it may not always work, e. g. when inotify descriptors are being used by other programs or the tree is too large. Therefore adhocify will exit
|
||||||
|
if it cannot setup a watch for all supplied directories. See inotify(7), /proc/sys/fs/inotify/.
|
||||||
|
Loading…
Reference in New Issue
Block a user