diff --git a/pages/linux/fadvise.md b/pages/linux/fadvise.md new file mode 100644 index 0000000000..401b67ef35 --- /dev/null +++ b/pages/linux/fadvise.md @@ -0,0 +1,16 @@ +# fadvise + +> Control Linux file caching behavior. +> More information: . + +- Preload a file into cache: + +`fadvise {{-a|--advice}} willneed {{path/to/file}}` + +- Suggest dropping a file from cache: + +`fadvise {{path/to/file}}` + +- Display help: + +`fadvise --help`