https://github.com/lu4p/shred
This is a libary to mimic the functionallity of the linux shred command.
https://github.com/lu4p/shred
go golang golang-library shred shredder shredding-files
Last synced: about 1 year ago
JSON representation
This is a libary to mimic the functionallity of the linux shred command.
- Host: GitHub
- URL: https://github.com/lu4p/shred
- Owner: lu4p
- License: unlicense
- Created: 2019-03-04T23:13:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T17:34:29.000Z (over 5 years ago)
- Last Synced: 2025-03-26T16:38:48.178Z (about 1 year ago)
- Topics: go, golang, golang-library, shred, shredder, shredding-files
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 15
- Watchers: 2
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://godoc.org/github.com/lu4p/shred)
[](https://unlicense.org/)
[](https://goreportcard.com/report/github.com/lu4p/shred)
# shred
Package shred is a golang library to mimic the functionality of the linux `shred` command
## Usage
```golang
package main
import (
"github.com/lu4p/shred"
)
func main(){
shredconf := shred.Conf{Times: 1, Zeros: true, Remove: false}
shredconf.Path("filename")
}
```
## Installation
```
go get -u github.com/lu4p/shred
```