Update cheatsheets

This commit is contained in:
ivuorinen
2025-06-29 00:23:20 +00:00
parent 42ee16d1f0
commit 0b27d7dda4
118 changed files with 277 additions and 228 deletions

View File

@@ -14,28 +14,28 @@ source: https://github.com/tldr-pages/tldr.git
- Continuously watch a specific file for events without exiting:
`inotifywait --monitor {{path/to/file}}`
`inotifywait {{[-m|--monitor]}} {{path/to/file}}`
- Watch a directory recursively for events:
`inotifywait --monitor --recursive {{path/to/directory}}`
`inotifywait {{[-m|--monitor]}} {{[-r|--recursive]}} {{path/to/directory}}`
- Watch a directory for changes, excluding files, whose names match a regular expression:
`inotifywait --monitor --recursive --exclude "{{regular_expression}}" {{path/to/directory}}`
`inotifywait {{[-m|--monitor]}} {{[-r|--recursive]}} --exclude "{{regular_expression}}" {{path/to/directory}}`
- Watch a file for changes, exiting when no event occurs for 30 seconds:
`inotifywait --monitor --timeout {{30}} {{path/to/file}}`
`inotifywait {{[-m|--monitor]}} {{[-t|--timeout]}} {{30}} {{path/to/file}}`
- Only watch a file for file modification events:
`inotifywait --event {{modify}} {{path/to/file}}`
`inotifywait {{[-e|--event]}} {{modify}} {{path/to/file}}`
- Watch a file printing only events, and no status messages:
`inotifywait --quiet {{path/to/file}}`
`inotifywait {{[-q|--quiet]}} {{path/to/file}}`
- Run a command when a file is accessed:
`inotifywait --event {{access}} {{path/to/file}} && {{command}}`
`inotifywait {{[-e|--event]}} {{access}} {{path/to/file}} && {{command}}`