Update cheatsheets

This commit is contained in:
ivuorinen
2024-12-29 00:19:25 +00:00
parent 5c2908e043
commit 2f5c37424b
24 changed files with 392 additions and 11 deletions

21
tldr/linux/fadvise Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# fadvise
> Control Linux file caching behavior.
> More information: <https://manned.org/fadvise>.
- 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`