Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

37
tldr/linux/trash Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# trash
> Manage the trashcan/recycling bin.
> More information: <https://github.com/andreafrancia/trash-cli>.
- Delete a file and send it to the trash:
`trash {{path/to/file}}`
- List all files in the trash:
`trash-list`
- Interactively restore a file from the trash:
`trash-restore`
- Empty the trash:
`trash-empty`
- Permanently delete all files in the trash which are older than 10 days:
`trash-empty {{10}}`
- Remove all files in the trash, which match a specific blob pattern:
`trash-rm "{{*.o}}"`
- Remove all files with a specific original location:
`trash-rm {{/path/to/file_or_directory}}`