-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

inotifywait


> Waits for changes to one or more files.

More information.


Run a command when a file changes:

while inotifywait {path/to/file}; do {command}; done

Be quiet about watching for changes:

while inotifywait --quiet {path/to/file}; do {command}; done

Watch a directory recursively for changes:

while inotifywait --recursive {path/to/directory}; do {command}; done

Exclude files matching a regular expression:

while inotifywait --recursive {path/to/directory} --exclude '{regular_expression}'; do {command}; done

Wait at most 30 seconds:

while inotifywait --timeout {30} {path/to/file}; do {command}; done

Only watch for file modification events:

while inotifywait --event {modify} {path/to/file}; do {command}; done


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 00:32:17 2024