Popularity
1.9
Declining
Activity
0.0
Stable
15
3
7

Description

Package shred is a golang library to mimic the functionality of the linux shred command

Programming language: Go
License: The Unlicense
Tags: Filesystem     Files     Go     Package     Library    

shred alternatives and similar packages

Based on the "Files" category.
Alternatively, view shred alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of shred or a related project?

Add another 'Files' Package

README

GoDoc License Go Report Card

shred

Package shred is a golang library to mimic the functionality of the linux shred command

## Usage

package main
import (
  "github.com/lu4p/shred"
)

func main(){
    shredconf := shred.Conf{Times: 1, Zeros: true, Remove: false}
    shredconf.Path("filename")
}


*Note that all licence references and agreements mentioned in the shred README section above are relevant to that project's source code only.