Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
linux/mate-search-tool Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# mate-search-tool
> Search files in MATE desktop environment.
> More information: <https://manned.org/mate-search-tool>.
- Search files containing a specific string in their name in a specific directory:
`mate-search-tool --named={{string}} --path={{path/to/directory}}`
- Search files without waiting a user confirmation:
`mate-search-tool --start --named={{string}} --path={{path/to/directory}}`
- Search files with name matching a specific regular expression:
`mate-search-tool --start --regex={{string}} --path={{path/to/directory}}`
- Set a sorting order in search results:
`mate-search-tool --start --named={{string}} --path={{path/to/directory}} --sortby={{name|folder|size|type|date}}`
- Set a descending sorting order:
`mate-search-tool --start --named={{string}} --path={{path/to/directory}} --descending`
- Search files owned by a specific user/group:
`mate-search-tool --start --{{user|group}}={{value}} --path={{path/to/directory}}`