updated README.md formating
This commit is contained in:
parent
4e280967d2
commit
1d1c961b50
@ -16,26 +16,33 @@ See adhocify --help.
|
|||||||
Examples:
|
Examples:
|
||||||
=========
|
=========
|
||||||
adhocify -w /tmp/ /home/user/myscript.sh
|
adhocify -w /tmp/ /home/user/myscript.sh
|
||||||
|
|
||||||
* Watches for IN\_CLOSE\_WRITE events in /tmp/ and launches script /home/user/myscript.sh
|
* Watches for IN\_CLOSE\_WRITE events in /tmp/ and launches script /home/user/myscript.sh
|
||||||
|
|
||||||
adhocify -w /tmp/ /home/user/myscript.sh {}
|
adhocify -w /tmp/ /home/user/myscript.sh {}
|
||||||
|
|
||||||
* Same as above, but also passes the file an event occured on to that script.(argv[1]).
|
* Same as above, but also passes the file an event occured on to that script.(argv[1]).
|
||||||
|
|
||||||
|
|
||||||
adhocify -w /tmp/ /bin/echo the file {} was written to
|
adhocify -w /tmp/ /bin/echo the file {} was written to
|
||||||
|
|
||||||
* Running echo "Test" > /tmp/test will print in the shell adhocify was launched in: "the file /tmp/test was written to"
|
* Running echo "Test" > /tmp/test will print in the shell adhocify was launched in: "the file /tmp/test was written to"
|
||||||
|
|
||||||
adhocify -w /tmp/ -w /var/run /home/user/myscript.sh
|
adhocify -w /tmp/ -w /var/run /home/user/myscript.sh
|
||||||
|
|
||||||
* Same as above, but also watches /var/run
|
* Same as above, but also watches /var/run
|
||||||
|
|
||||||
adhocify /home/user/myscript.sh
|
adhocify /home/user/myscript.sh
|
||||||
|
|
||||||
* Watches for IN\_CLOSE\_WRITE events in the current directory, launches script
|
* Watches for IN\_CLOSE\_WRITE events in the current directory, launches script
|
||||||
/home/user/myscript.
|
/home/user/myscript.
|
||||||
|
|
||||||
adhocify -m IN\_OPEN -w /tmp /home/user/myscript.sh
|
adhocify -m IN\_OPEN -w /tmp /home/user/myscript.sh
|
||||||
|
|
||||||
* Watches for IN\_OPEN events in /tmp/, launches script /home/user/myscript.sh
|
* Watches for IN\_OPEN events in /tmp/, launches script /home/user/myscript.sh
|
||||||
|
|
||||||
adhocify -w /tmp -i *.txt /home/user/myscript.sh
|
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
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user