1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/fadvise.md

17 lines
298 B
Markdown
Raw Normal View History

# 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:
2025-03-26 00:36:41 +02:00
`fadvise {{[-h|--help]}}`