Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T17:34:29.000Z (about 4 years ago)
- Last Synced: 2024-06-18T20:26:37.104Z (7 months ago)
- Topics: go, golang, golang-library, shred, shredder, shredding-files
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 14
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![GoDoc](https://godoc.org/github.com/lu4p/shred?status.svg)](https://godoc.org/github.com/lu4p/shred)
[![License](https://img.shields.io/github/license/lu4p/shred.svg)](https://unlicense.org/)
[![Go Report Card](https://goreportcard.com/badge/github.com/lu4p/shred)](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
```