blob detection

This commit is contained in:
u80864958
2025-05-16 10:21:28 +02:00
parent 6e63af80a6
commit 7f93ae2c20
3 changed files with 20 additions and 27 deletions

View File

@ -12,6 +12,8 @@ Example use case:
- Aggregate and view the contents of multiple files or directories in one command.
- Automatically copy the aggregated result to the clipboard for seamless integration with other tools or platforms.
- Export your codebase to a markdown document.
- Export your codebase to a typst document.
## Dependencies
@ -42,14 +44,21 @@ The binary will be placed in your $GOPATH/bin directory. Ensure $GOPATH/bin is i
## Example Usage
Concatenate files and directories:
### Concatenate files and directories:
```bash
./pat file1.txt folder/
pat file1.txt folder/
```
Output is printed to the terminal and copied to the clipboard, allowing you to paste it elsewhere.
### Create printed
```sh
pat -t -i .gitignore . | typst compile /dev/stdin pat.pdf
```
---
#### Notes