adhocify/README.md

63 lines
2.1 KiB
Markdown
Raw Normal View History

2017-03-19 10:42:12 +01:00
What is adhocify?
=================
2017-07-30 10:45:10 +02:00
2017-03-19 10:42:12 +01:00
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
2017-07-30 10:45:10 +02:00
will be passed to that script.
2017-03-19 10:42:12 +01:00
Requirements
============
adhocify only runs on Linux. You need a kernel and libc with inotify
support - pretty much all satisfy this condition.
Options
=======
See adhocify --help.
Examples:
=========
adhocify -w /tmp/ /home/user/myscript.sh
2017-03-19 10:49:58 +01:00
* Watches for IN\_CLOSE\_WRITE events in /tmp/ and launches script /home/user/myscript.sh
2017-03-19 10:42:12 +01:00
adhocify -w /tmp/ /home/user/myscript.sh {}
2017-03-19 10:49:58 +01:00
* Same as above, but also passes the file an event occured on to that script.(argv[1]).
2017-03-19 10:42:12 +01:00
adhocify -w /tmp/ /bin/echo the file {} was written to
2017-03-19 10:49:58 +01:00
* Running echo "Test" > /tmp/test will print in the shell adhocify was launched in: "the file /tmp/test was written to"
2017-03-19 10:42:12 +01:00
adhocify -w /tmp/ -w /var/run /home/user/myscript.sh
2017-03-19 10:49:58 +01:00
* Same as above, but also watches /var/run
2017-03-19 10:42:12 +01:00
adhocify /home/user/myscript.sh
2017-03-19 10:49:58 +01:00
* Watches for IN\_CLOSE\_WRITE events in the current directory, launches script
2017-03-19 10:42:12 +01:00
/home/user/myscript.
adhocify -m IN\_OPEN -w /tmp /home/user/myscript.sh
2017-03-19 10:49:58 +01:00
* Watches for IN\_OPEN events in /tmp/, launches script /home/user/myscript.sh
2017-03-19 10:42:12 +01:00
adhocify -w /tmp -i *.txt /home/user/myscript.sh
2017-03-19 10:49:58 +01:00
* Watches for IN\_CLOSE\_WRITE events in /tmp/ but will not pass *.txt files to the script
2017-03-19 10:42:12 +01:00
2017-07-30 10:45:10 +02:00
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/.
2019-04-27 22:44:50 +02:00
adhocify -m IN_CREATE --exit-with-child=0 -- /usr/bin/test -f awaited_file
* Keep running until the file named "awaited_file" is created in the current directory.
2019-04-27 22:44:50 +02:00
Other tools
===========
If adhocify does not suit your needs, take a look at:
* inotify-tools: https://github.com/rvoicilas/inotify-tools/wiki