1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-08 17:35:24 +02:00
tldr/pages/linux/fadvise.md
Managor 63229711c7
fadvise: fix example (#16271)
Update fadvise.md
2025-04-27 15:22:13 +03:00

16 lines
298 B
Markdown

# fadvise
> Control Linux file caching behavior.
> More information: <https://manned.org/fadvise>.
- Preload a file into cache:
`fadvise {{[-a|--advice]}} willneeded {{path/to/file}}`
- Suggest dropping a file from cache:
`fadvise {{path/to/file}}`
- Display help:
`fadvise {{[-h|--help]}}`