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

25
ouch Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# ouch
> Command-line utility for compressing and decompressing files and directories.
> More information: <https://crates.io/crates/ouch>.
- Decompress a specific file:
`ouch decompress {{path/to/archive.tar.xz}}`
- Decompress a file to a specific location:
`ouch decompress {{path/to/archive.tar.xz}} --dir {{path/to/directory}}`
- Decompress multiple files:
`ouch decompress {{path/to/archive1.tar path/to/archive2.tar.gz ...}}`
- Compress files:
`ouch compress {{path/to/file1 path/to/file2 ...}} {{path/to/archive.zip}}`