项目作者: lu4p

项目描述 :
This is a libary to mimic the functionallity of the linux shred command.
高级语言: Go
项目地址: git://github.com/lu4p/shred.git
创建时间: 2019-03-04T23:13:16Z
项目社区:https://github.com/lu4p/shred

开源协议:The Unlicense

下载


GoDoc
License
Go Report Card

shred

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

Usage

  1. package main
  2. import (
  3. "github.com/lu4p/shred"
  4. )
  5. func main(){
  6. shredconf := shred.Conf{Times: 1, Zeros: true, Remove: false}
  7. shredconf.Path("filename")
  8. }

Installation

  1. go get -u github.com/lu4p/shred