Resultados de la búsqueda a petición "inotify-tools"

3 la respuesta

how para lograr los métodos de shell inotify-tools de linux en osx

Para monitorear un archivo en Linux, puedo usar herramientas de inotify como esta #!/bin/bash # with inotify-tools installed, watch for modification of file passed as first param while inotifywait -e modify $1; do # do something here done pero ...