cat
Extract text from plaintext, .docx, .odt and .rtf files. Pure go.
File Explorer
- config.yml
- go.yml
- dependabot.yml
- FUNDING.yml
- main.go
- docxreader.go
- docxreader_test.go
- odtreader.go
- odtreader_test.go
- plaintxt.go
- plaintxt_test.go
- LICENSE
- rtftxt.go
- rtftxt_test.go
- stack.go
- stack_test.go
- ad.rtf
- infotext.rtf
- np.new.rtf
- test.docx
- test.jpg
- test.odt
- test.txt
- .gitattributes
- .gitignore
- cat.go
- cat_test.go
- go.mod
- go.sum
- LICENSE
- README.md
- renovate.json
- test.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Link
Example
Command Glossary
Commands referenced in this DOCs, explained below.
go get
View Details ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
// repository documentation
Was this content helpful?
(0 ratings)
